From 56dd1571228ee85fdb61ece2c43e6f108bb9c54a Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Wed, 15 Mar 2023 12:45:01 +0600 Subject: [PATCH] Fixed hiding of icons --- source/ubl-settings-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ubl-settings-manager.c b/source/ubl-settings-manager.c index 53291bd..e9bc67f 100644 --- a/source/ubl-settings-manager.c +++ b/source/ubl-settings-manager.c @@ -877,7 +877,7 @@ apps *find_apps(int *sizef){ tempapp.Pluggable=g_key_file_get_boolean(gfile,"Desktop Entry", "Pluggable",NULL); if (!tempapp.Pluggable) tempapp.Pluggable=g_key_file_get_boolean(gfile,"Desktop Entry", "X-XfcePluggable",NULL); if (tempapp.Pluggable) tempapp.DualPluggable=g_key_file_get_boolean(gfile,"Desktop Entry", "X-UBLPluggable",NULL); - if (g_key_file_get_boolean(gfile,"Desktop Entry", "X-UBL-SettingsManager-Hidden",NULL)==1) + if (g_key_file_get_boolean(gfile,"Desktop Entry", "X-UBL-SettingsManager-Hidden",NULL)==0) if (size==0){ applist=(apps*)malloc(size+1*sizeof(apps)); applist[0].Name=yon_char_new(tempapp.Name);