summaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>2002-07-06 16:50:48 +0000
committerHavoc Pennington <hp@src.gnome.org>2002-07-06 16:50:48 +0000
commit8c3437fd2754c9aec761545a1a1e668ed6d07ea1 (patch)
tree64b294c5907fad38c3cc65cee7b847ba6b6cafdc /src/prefs.c
parentefeedae7129e1bf1ed20224ce04e6584b5e5328a (diff)
downloadmetacity-8c3437fd2754c9aec761545a1a1e668ed6d07ea1.tar.gz
put _NET_DESKTOP_NAMES in the array of atom names, so desktop names might
2002-07-06 Havoc Pennington <hp@pobox.com> * src/display.c (meta_display_open): put _NET_DESKTOP_NAMES in the array of atom names, so desktop names might work and we don't read uninitialized memory. * src/main.c (main): add VERSION/timestamp verbose message. * src/keybindings.c: implement cycle_windows cycle_panels * src/metacity.schemas.in: add the cycle_windows cycle_panels keybindings * src/prefs.h (META_KEYBINDING_FOCUS_PREVIOUS): replace FOCUS_PREVIOUS key binding with CYCLE_WINDOWS and CYCLE_PANELS (not good names really, but I don't have ideas). * src/common.h: add a grab op for alt+esc window cycling
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/prefs.c b/src/prefs.c
index fdbc794f..26fc4b21 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -1,7 +1,7 @@
/* Metacity preferences */
/*
- * Copyright (C) 2001 Havoc Pennington
+ * Copyright (C) 2001 Havoc Pennington, Copyright (C) 2002 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -819,7 +819,8 @@ static MetaKeyPref screen_bindings[] = {
{ META_KEYBINDING_WORKSPACE_DOWN, 0, 0 },
{ META_KEYBINDING_SWITCH_WINDOWS, 0, 0 },
{ META_KEYBINDING_SWITCH_PANELS, 0, 0 },
- { META_KEYBINDING_FOCUS_PREVIOUS, 0, 0 },
+ { META_KEYBINDING_CYCLE_WINDOWS, 0, 0 },
+ { META_KEYBINDING_CYCLE_PANELS, 0, 0 },
{ META_KEYBINDING_SHOW_DESKTOP, 0, 0 },
{ NULL, 0, 0 }
};