]> Dogcows Code - chaz/tint2/blobdiff - src/launcher/launcher.c
Disable mouse hover events when the launcher tooltip is disabled
[chaz/tint2] / src / launcher / launcher.c
index ab4ca29d67526e62192b9d40bf87a9b3627577dc..cb4aa9ba1aa93ba180666f25f9646a1388d7805e 100644 (file)
@@ -104,6 +104,7 @@ void init_launcher_panel(void *p)
 void cleanup_launcher()
 {
        int i;
+       GSList *l;
 
        if (xsettings_client)
                xsettings_client_destroy(xsettings_client);
@@ -112,7 +113,10 @@ void cleanup_launcher()
                Launcher *launcher = &panel->launcher;          
                cleanup_launcher_theme(launcher);
        }
-       g_slist_free_full(panel_config.launcher.list_apps, free);
+       for (l = panel_config.launcher.list_apps; l ; l = l->next) {
+               free(l->data);
+       }
+       g_slist_free(panel_config.launcher.list_apps);
        panel_config.launcher.list_apps = NULL;
        free(icon_theme_name);
        icon_theme_name = 0;
This page took 0.020279 seconds and 4 git commands to generate.