diff options
author | Havoc Pennington <hp@pobox.com> | 2002-09-30 03:58:41 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-09-30 03:58:41 +0000 |
commit | e802acf413cef2579be8fbef7abcb4eb0c167b29 (patch) | |
tree | 7ea4d1978b22a6e5a69dcd00f7e0ca3de21792b8 | |
parent | f001625e5b80e5ac71b515511475543b826f65a3 (diff) | |
download | metacity-e802acf413cef2579be8fbef7abcb4eb0c167b29.tar.gz metacity-e802acf413cef2579be8fbef7abcb4eb0c167b29.tar.bz2 |
update from libegg to get fix from Ralph Loader for <Super> <Hyper> <Meta>
2002-09-29 Havoc Pennington <hp@pobox.com>
* src/eggaccelerators.c: update from libegg to get fix from Ralph
Loader for <Super> <Hyper> <Meta> parsing, #93005
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/eggaccelerators.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2002-09-29 Havoc Pennington <hp@pobox.com> + * src/eggaccelerators.c: update from libegg to get fix from Ralph + Loader for <Super> <Hyper> <Meta> parsing, #93005 + +2002-09-29 Havoc Pennington <hp@pobox.com> + * src/effects.h (META_MINIMIZE_ANIMATION_LENGTH): shorten minimize animation a bit diff --git a/src/eggaccelerators.c b/src/eggaccelerators.c index 570826b..ca63e78 100644 --- a/src/eggaccelerators.c +++ b/src/eggaccelerators.c @@ -148,7 +148,7 @@ is_meta (const gchar *string) (string[2] == 'e' || string[2] == 'E') && (string[3] == 't' || string[3] == 'T') && (string[4] == 'a' || string[4] == 'A') && - (string[8] == '>')); + (string[5] == '>')); } static inline gboolean @@ -160,7 +160,7 @@ is_super (const gchar *string) (string[3] == 'p' || string[3] == 'P') && (string[4] == 'e' || string[4] == 'E') && (string[5] == 'r' || string[5] == 'R') && - (string[8] == '>')); + (string[6] == '>')); } static inline gboolean @@ -172,7 +172,7 @@ is_hyper (const gchar *string) (string[3] == 'p' || string[3] == 'P') && (string[4] == 'e' || string[4] == 'E') && (string[5] == 'r' || string[5] == 'R') && - (string[8] == '>')); + (string[6] == '>')); } /** |