diff options
Diffstat (limited to 'src/Ewmh.cc')
-rw-r--r-- | src/Ewmh.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc index be4e81a..9764998 100644 --- a/src/Ewmh.cc +++ b/src/Ewmh.cc | |||
@@ -276,7 +276,7 @@ void Ewmh::setupFrame(FluxboxWindow &win) { | |||
276 | win.setFocusHidden(true); | 276 | win.setFocusHidden(true); |
277 | win.setIconHidden(true); | 277 | win.setIconHidden(true); |
278 | win.moveToLayer(Layer::DESKTOP); | 278 | win.moveToLayer(Layer::DESKTOP); |
279 | win.setDecorationMask(0); | 279 | win.setDecorationMask(FluxboxWindow::DECOR_NONE); |
280 | win.setTabable(false); | 280 | win.setTabable(false); |
281 | win.setMovable(false); | 281 | win.setMovable(false); |
282 | win.setResizable(false); | 282 | win.setResizable(false); |
@@ -288,7 +288,7 @@ void Ewmh::setupFrame(FluxboxWindow &win) { | |||
288 | * window is a splash screen displayed as an application | 288 | * window is a splash screen displayed as an application |
289 | * is starting up. | 289 | * is starting up. |
290 | */ | 290 | */ |
291 | win.setDecoration(FluxboxWindow::DECOR_NONE); | 291 | win.setDecorationMask(FluxboxWindow::DECOR_NONE); |
292 | win.setFocusHidden(true); | 292 | win.setFocusHidden(true); |
293 | win.setIconHidden(true); | 293 | win.setIconHidden(true); |
294 | win.setMovable(false); | 294 | win.setMovable(false); |
@@ -306,7 +306,7 @@ void Ewmh::setupFrame(FluxboxWindow &win) { | |||
306 | * application). Windows of this type may set the | 306 | * application). Windows of this type may set the |
307 | * WM_TRANSIENT_FOR hint indicating the main application window. | 307 | * WM_TRANSIENT_FOR hint indicating the main application window. |
308 | */ | 308 | */ |
309 | win.setDecoration(FluxboxWindow::DECOR_NONE); | 309 | win.setDecorationMask(FluxboxWindow::DECOR_NONE); |
310 | win.setIconHidden(true); | 310 | win.setIconHidden(true); |
311 | win.moveToLayer(Layer::ABOVE_DOCK); | 311 | win.moveToLayer(Layer::ABOVE_DOCK); |
312 | } | 312 | } |