[Xfce4-commits] [xfce/thunar] 01/01: Fix session startup priority
noreply at xfce.org
noreply at xfce.org
Fri May 17 21:42:06 CEST 2019
This is an automated email from the git hooks/post-receive script.
a n d r e p u s h e d a c o m m i t t o b r a n c h x f c e - 4 . 1 4
in repository xfce/thunar.
commit e1a9778ac3409815727fbe612bf8064938b149a5
Author: Andre Miranda <andreldm at xfce.org>
Date: Fri May 17 16:39:12 2019 -0300
Fix session startup priority
It was 24 in decimal, while the expected is 30
---
thunar/thunar-session-client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/thunar/thunar-session-client.c b/thunar/thunar-session-client.c
index 60728b5..40fd04c 100644
--- a/thunar/thunar-session-client.c
+++ b/thunar/thunar-session-client.c
@@ -256,7 +256,7 @@ thunar_session_client_connect (ThunarSessionClient *session_client,
prop_priority.type = SmCARD8;
prop_priority.num_vals = G_N_ELEMENTS (value_priority);
prop_priority.vals = &value_priority[0];
- value_priority[0].value = "\30";
+ value_priority[0].value = "\36"; /* this is octal, 30 in decimal */
value_priority[0].length = 1;
/* setup the properties list */
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list