Browse Source

Apply patch from Scott Barron

(Old svn revision: 4015)
upstream/xfce4-panel-4.10.1
Olivier Fourdan 19 years ago
parent
commit
5aa223a0ac
  1. 7
      panel/groups.c

7
panel/groups.c

@ -531,6 +531,10 @@ groups_remove (int index)
PanelGroup *group;
li = g_slist_nth (group_list, index);
/* Paranoid, should not happen here */
if (!li)
return;
group = li->data;
DBG ("unref class %s", group->control->cclass->caption);
@ -559,6 +563,9 @@ groups_show_popup (int index, gboolean show)
PanelGroup *group;
li = g_slist_nth (group_list, index);
if (!li)
return;
group = li->data;
if (show && group->control->with_popup && !group->popup)

Loading…
Cancel
Save