diff --git a/ChangeLog b/ChangeLog index e830564e3..04016ddfc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2003-02-04 Havoc Pennington + + * src/themes/Simple/ChangeLog: nuke subdir ChangeLog, + there can be only one true ChangeLog. + +2003-01-30 Havoc Pennington + + * src/keybindings.c (process_event): match handlers to key events + using key codes, not key syms + Thu Jan 30 22:55:16 2003 Jonathan Blandford * src/themes/Makefile.am (THEMES): add Simple to the list of diff --git a/src/keybindings.c b/src/keybindings.c index fbc9de463..2190091e5 100644 --- a/src/keybindings.c +++ b/src/keybindings.c @@ -1415,7 +1415,7 @@ process_event (MetaKeyBinding *bindings, i = 0; while (i < n_bindings) { - if (bindings[i].keysym == keysym && + if (bindings[i].keycode == event->xkey.keycode && ((event->xkey.state & ~(display->ignored_modifier_mask)) == bindings[i].mask) && event->type == KeyPress) diff --git a/src/themes/Simple/ChangeLog b/src/themes/Simple/ChangeLog deleted file mode 100644 index a0800b89e..000000000 --- a/src/themes/Simple/ChangeLog +++ /dev/null @@ -1,27 +0,0 @@ -2003-01-30 Seth Nickell - - * metacity-theme-1.xml: - - Change name in theme file to "Simple". - -2002-08-22 Tuomas Kuosmanen - - * metacity-theme-1.xml: Removed the title_spacer stuff that - was a relic from Atlanta and was just making an ugly vertical line at - the right edge of the titlebar.. Looked just strange and didnt belong - there. - - * I also made the button padding a bit larger so it generally looks - better with a bit larger font sizes. - -16-08-2002 Bastien Nocera - - * update theme format for metacity 2.4.0 - -04-07-2002 Bastien Nocera - - * support for "border" window type - * draw a border at the top of the window even when maximised (it - looked arse with a panel at the top, it would blend the window into - the panel) - * fixed missing bottom of the frame for shaded/focused windows