make the all desktops thinger get disabled too

This commit is contained in:
Dana Jansens 2003-10-17 06:27:14 +00:00
parent d7f51ce0a6
commit 8226cd7026

View file

@ -128,6 +128,7 @@ static void send_to_update(ObMenuFrame *frame, gpointer data)
guint i;
GSList *acts;
ObAction *act;
ObMenuEntry *e;;
menu_clear_entries(menu);
@ -153,14 +154,11 @@ static void send_to_update(ObMenuFrame *frame, gpointer data)
act->data.sendto.desk = desk;
act->data.sendto.follow = FALSE;
acts = g_slist_prepend(NULL, act);
menu_add_normal(menu, desk, name, acts);
e = menu_add_normal(menu, desk, name, acts);
if (frame->client->desktop == desk) {
ObMenuEntry *e = menu_find_entry_id(menu, desk);
g_assert(e);
if (frame->client->desktop == desk)
e->data.normal.enabled = FALSE;
}
}
}
void client_menu_startup()