mirror of
https://github.com/brl/mutter.git
synced 2024-11-08 23:16:20 -05:00
Change default value of input hint (if not specified) to true instead of
2002-07-05 Havoc Pennington <hp@pobox.com> * src/window.c (update_wm_hints): Change default value of input hint (if not specified) to true instead of false. This is what some clients assume, such as Visual SlickEdit.
This commit is contained in:
parent
d826e620a9
commit
b392d206d7
@ -1,3 +1,9 @@
|
||||
2002-07-05 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/window.c (update_wm_hints): Change default value of input
|
||||
hint (if not specified) to true instead of false. This is what
|
||||
some clients assume, such as Visual SlickEdit.
|
||||
|
||||
2002-07-02 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/window.c (meta_window_show_menu): use new macros to get
|
||||
|
@ -4036,7 +4036,7 @@ update_wm_hints (MetaWindow *window)
|
||||
XWMHints *hints;
|
||||
|
||||
/* Fill in defaults */
|
||||
window->input = FALSE;
|
||||
window->input = TRUE;
|
||||
window->initially_iconic = FALSE;
|
||||
window->xgroup_leader = None;
|
||||
window->wm_hints_pixmap = None;
|
||||
@ -4048,7 +4048,8 @@ update_wm_hints (MetaWindow *window)
|
||||
window->xwindow);
|
||||
if (hints)
|
||||
{
|
||||
window->input = ((hints->flags & InputHint) != 0) && hints->input;
|
||||
if (hints->flags & InputHint)
|
||||
window->input = hints->input;
|
||||
|
||||
if (hints->flags & StateHint)
|
||||
window->initially_iconic = (hints->initial_state == IconicState);
|
||||
|
Loading…
Reference in New Issue
Block a user