diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-10-27 19:59:11 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-10-27 19:59:11 +0000 |
| commit | def76092b587e7e9a2b212dc5211773e336525e1 (patch) | |
| tree | 34a4d1af5f39eac304f2eea71aab898c7e350d8a /openbox | |
| parent | 7c80db2552c97be9145ce88dd40f80b0873f56ef (diff) | |
disable the "Go there" menu entry when its the current desktop
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/client_list_menu.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openbox/client_list_menu.c b/openbox/client_list_menu.c index 2ac29038..a1dc266c 100644 --- a/openbox/client_list_menu.c +++ b/openbox/client_list_menu.c @@ -86,10 +86,14 @@ static void desk_menu_update(ObMenuFrame *frame, gpointer data) GSList *acts = NULL; ObAction* act; + ObMenuEntry *e; + act = action_from_string("Desktop", OB_USER_ACTION_MENU_SELECTION); act->data.desktop.desk = d->desktop; acts = g_slist_append(acts, act); - menu_add_normal(menu, 0, _("Go there..."), acts); + e = menu_add_normal(menu, 0, _("Go there..."), acts); + if (d->desktop == screen_desktop) + e->data.normal.enabled = FALSE; } } |
