mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 11:00:54 -05:00
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
This commit is contained in:
parent
f001625e5b
commit
e802acf413
@ -1,3 +1,8 @@
|
|||||||
|
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>
|
2002-09-29 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
* src/effects.h (META_MINIMIZE_ANIMATION_LENGTH): shorten minimize
|
* src/effects.h (META_MINIMIZE_ANIMATION_LENGTH): shorten minimize
|
||||||
|
@ -148,7 +148,7 @@ is_meta (const gchar *string)
|
|||||||
(string[2] == 'e' || string[2] == 'E') &&
|
(string[2] == 'e' || string[2] == 'E') &&
|
||||||
(string[3] == 't' || string[3] == 'T') &&
|
(string[3] == 't' || string[3] == 'T') &&
|
||||||
(string[4] == 'a' || string[4] == 'A') &&
|
(string[4] == 'a' || string[4] == 'A') &&
|
||||||
(string[8] == '>'));
|
(string[5] == '>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
@ -160,7 +160,7 @@ is_super (const gchar *string)
|
|||||||
(string[3] == 'p' || string[3] == 'P') &&
|
(string[3] == 'p' || string[3] == 'P') &&
|
||||||
(string[4] == 'e' || string[4] == 'E') &&
|
(string[4] == 'e' || string[4] == 'E') &&
|
||||||
(string[5] == 'r' || string[5] == 'R') &&
|
(string[5] == 'r' || string[5] == 'R') &&
|
||||||
(string[8] == '>'));
|
(string[6] == '>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
@ -172,7 +172,7 @@ is_hyper (const gchar *string)
|
|||||||
(string[3] == 'p' || string[3] == 'P') &&
|
(string[3] == 'p' || string[3] == 'P') &&
|
||||||
(string[4] == 'e' || string[4] == 'E') &&
|
(string[4] == 'e' || string[4] == 'E') &&
|
||||||
(string[5] == 'r' || string[5] == 'R') &&
|
(string[5] == 'r' || string[5] == 'R') &&
|
||||||
(string[8] == '>'));
|
(string[6] == '>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user