diff --git a/capplets/keybindings/ChangeLog b/capplets/keybindings/ChangeLog index ec43edd44..9a4a35c6d 100644 --- a/capplets/keybindings/ChangeLog +++ b/capplets/keybindings/ChangeLog @@ -1,3 +1,8 @@ +Mon Aug 19 17:54:07 2002 Jonathan Blandford + + * gnome-keybinding-properties.c (metacity_key_list): fix bindings + to match metacity. + 2002-08-15 Jody Goldberg * gnome-keybinding-properties.c : Add a pile of missing metacity diff --git a/capplets/keybindings/gnome-keybinding-properties.c b/capplets/keybindings/gnome-keybinding-properties.c index 9a3441029..d60a30509 100644 --- a/capplets/keybindings/gnome-keybinding-properties.c +++ b/capplets/keybindings/gnome-keybinding-properties.c @@ -49,15 +49,14 @@ const KeyListEntry metacity_key_list[] = { "/apps/metacity/window_keybindings/toggle_maximized", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/window_keybindings/toggle_shaded", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/window_keybindings/close", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/window_keybindings/minimize", ALWAYS_VISIBLE, 0 }, + { "/apps/metacity/window_keybindings/minimize", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/window_keybindings/begin_move", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/window_keybindings/begin_resize", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/window_keybindings/raise_or_lower", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/window_keybindings/raise", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/window_keybindings/lower", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/window_keybindings/cycle_windows", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/window_keybindings/cycle_panels", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/window_keybindings/toggle_on_all_workspaces", N_WORKSPACES_GT, 1 }, + /* These next three are out of order compared to the schemas file. */ + { "/apps/metacity/window_keybindings/raise_or_lower", ALWAYS_VISIBLE, 0 }, + { "/apps/metacity/window_keybindings/raise", ALWAYS_VISIBLE, 0 }, + { "/apps/metacity/window_keybindings/lower", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/window_keybindings/move_to_workspace_1", N_WORKSPACES_GT, 1 }, { "/apps/metacity/window_keybindings/move_to_workspace_2", N_WORKSPACES_GT, 1 }, { "/apps/metacity/window_keybindings/move_to_workspace_3", N_WORKSPACES_GT, 2 }, @@ -76,7 +75,8 @@ const KeyListEntry metacity_key_list[] = { "/apps/metacity/window_keybindings/move_to_workspace_down", N_WORKSPACES_GT, 1 }, { "/apps/metacity/global_keybindings/switch_windows", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/global_keybindings/switch_panels", ALWAYS_VISIBLE, 0 }, - { "/apps/metacity/global_keybindings/focus_previous_window", ALWAYS_VISIBLE, 0 }, + { "/apps/metacity/global_keybindings/cycle_windows", ALWAYS_VISIBLE, 0 }, + { "/apps/metacity/global_keybindings/cycle_panels", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/global_keybindings/show_desktop", ALWAYS_VISIBLE, 0 }, { "/apps/metacity/global_keybindings/switch_to_workspace_1", N_WORKSPACES_GT, 1 }, { "/apps/metacity/global_keybindings/switch_to_workspace_2", N_WORKSPACES_GT, 1 }, @@ -94,18 +94,6 @@ const KeyListEntry metacity_key_list[] = { "/apps/metacity/global_keybindings/switch_to_workspace_right", N_WORKSPACES_GT, 1 }, { "/apps/metacity/global_keybindings/switch_to_workspace_up", N_WORKSPACES_GT, 1 }, { "/apps/metacity/global_keybindings/switch_to_workspace_down", N_WORKSPACES_GT, 1 }, - { "/apps/metacity/global_keybindings/run_command_1", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_2", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_3", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_4", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_5", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_6", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_7", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_8", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_9", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_10", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_11", ALWAYS_VISIBLE, 1 }, - { "/apps/metacity/global_keybindings/run_command_12", ALWAYS_VISIBLE, 1 }, { NULL } };