Hi,<br><br>can anybody give me an advice how to fix the following issue ?<br><br>Whenever the Gimp is launched all its windows are put in a floating layer on reserved workspace:<br><br>import qualified XMonad.StackSet as StackSet<br>
...<br>myManageHook = composeAll<br>    [<br>      ...<br>     , className ~? &quot;Gimp&quot;           --&gt; shiftView &quot;graphics&quot; &lt;+&gt; doFloat <br>      ...<br>    ]<br>    where<br>        shiftView ws    = doShift ws &lt;+&gt; doF (StackSet.greedyView ws)<br>
 <br>So far so good, the Gimp windows &quot;gimp-image-window&quot;, &quot;gimp-toolbox&quot; and &quot;gimp-dock&quot; are properly moved to &quot;graphics&quot; workspace and sent to float.<br><br>However if I invoke any dialog from the main window like &quot;gimp-file-open&quot; (File/Open from the menu) it is not placed as the top window but appears bellow &quot;gimp-toolbox&quot; and &quot;gimp-dock&quot; and I have to manually  place it in front every time.<br>
<br>Any idea how to fix this annoying glitch ?<br><br>Thx<br><br>xmonad 0.11<br><br>