Set XWMHints flags correctly
This commit is contained in:
parent
3790723483
commit
21bb019434
1 changed files with 1 additions and 1 deletions
|
@ -617,8 +617,8 @@ void set_panel_properties(Panel *p)
|
||||||
if (panel_dock) {
|
if (panel_dock) {
|
||||||
// Necessary for placing the panel into the dock on Openbox and Fluxbox.
|
// Necessary for placing the panel into the dock on Openbox and Fluxbox.
|
||||||
// See https://gitlab.com/o9000/tint2/issues/465
|
// See https://gitlab.com/o9000/tint2/issues/465
|
||||||
|
wmhints.flags = IconWindowHint | WindowGroupHint | StateHint;
|
||||||
wmhints.icon_window = wmhints.window_group = p->main_win;
|
wmhints.icon_window = wmhints.window_group = p->main_win;
|
||||||
wmhints.flags = StateHint | IconWindowHint;
|
|
||||||
wmhints.initial_state = WithdrawnState;
|
wmhints.initial_state = WithdrawnState;
|
||||||
}
|
}
|
||||||
// We do not need keyboard input focus.
|
// We do not need keyboard input focus.
|
||||||
|
|
Loading…
Reference in a new issue