From a11becfb2e88c6a299274c1d25a2ceed5d6c76e9 Mon Sep 17 00:00:00 2001 From: o9000 Date: Sun, 8 Feb 2015 10:18:48 +0000 Subject: [PATCH] Another attempt to fix issue 465: broken WM_HINTS git-svn-id: http://tint2.googlecode.com/svn/trunk@689 121b4492-b84c-0410-8b4c-0d4edfb3f3cc --- src/panel.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/panel.c b/src/panel.c index 07ea390..60dac5d 100644 --- a/src/panel.c +++ b/src/panel.c @@ -524,12 +524,15 @@ void set_panel_properties(Panel *p) XWMHints wmhints; memset(&wmhints, 0, sizeof(wmhints)); - wmhints.flags = StateHint | IconWindowHint | InputHint; - // Necessary for placing the panel into the dock on Openbox and Fluxbox. - // See https://code.google.com/p/tint2/issues/detail?id=465 - wmhints.initial_state = WithdrawnState; - wmhints.icon_window = wmhints.window_group = p->main_win; + if (panel_dock) { + // Necessary for placing the panel into the dock on Openbox and Fluxbox. + // See https://code.google.com/p/tint2/issues/detail?id=465 + wmhints.icon_window = wmhints.window_group = p->main_win; + wmhints.flags = StateHint | IconWindowHint; + wmhints.initial_state = WithdrawnState; + } // We do not need keyboard input focus. + wmhints.flags |= InputHint; wmhints.input = False; XSetWMHints(server.dsp, p->main_win, &wmhints);