summaryrefslogtreecommitdiff
path: root/src/display.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>2003-02-22 20:31:51 +0000
committerHavoc Pennington <hp@src.gnome.org>2003-02-22 20:31:51 +0000
commitfb9ad1eb1314bada8f051d6dc368625aae6245e5 (patch)
tree8ae29bbfbdb8c3698b6c5bc01bba03a7330ff121 /src/display.c
parent8764b89942e80d1c6a301c04f5a802396466625a (diff)
downloadmetacity-fb9ad1eb1314bada8f051d6dc368625aae6245e5.tar.gz
when tabbing backward, we are still tabbing *from* the most recently used
2003-02-22 Havoc Pennington <hp@pobox.com> * src/display.c (meta_display_get_tab_next): when tabbing backward, we are still tabbing *from* the most recently used window, not from the least recently used window. * src/keybindings.c (struct _MetaKeyBinding): make keycode unsigned to match XEvent Patch for #84999 based on patch from Mark McLoughlin * src/prefs.c: add an add_shift field to MetaKeyPref to add shift when grabbing the given keybinding. * src/keybindings.c (rebuild_screen_binding_table) (rebuild_window_binding_table): refactor to share code, and honor add_shift field in MetaKeyPref
Diffstat (limited to 'src/display.c')
-rw-r--r--src/display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display.c b/src/display.c
index 36971cc9..9213c8c4 100644
--- a/src/display.c
+++ b/src/display.c
@@ -3541,7 +3541,7 @@ meta_display_get_tab_next (MetaDisplay *display,
if (backward)
return find_tab_backward (display, type, screen, workspace,
- g_list_last (display->mru_list));
+ display->mru_list);
else
return find_tab_forward (display, type, screen, workspace,
display->mru_list);