all repos — fluxbox @ 6512024f08e71c10b41040318e7dc0f9a5810224

custom fork of the fluxbox windowmanager

allow windows to deiconify themselves
markt markt
commit

6512024f08e71c10b41040318e7dc0f9a5810224

parent

fc502861a45704a8f7cd21282cbccd7e5ac620f3

2 files changed, 5 insertions(+), 1 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,6 +1,9 @@

(Format: Year/Month/Day) Changes for 1.0rc3: *07/01/14: + * Properly 'properly fix' shaded and stuck windows on restart -- i.e. allow + windows to deiconify themselves the rest of the time (Mark) + Window.cc * Several changes for background style option: (Mark) - now support `background: mod' to coincide with fbsetroot -mod -- In addition to `background.color' and `background.colorTo', this option
M src/Window.ccsrc/Window.cc

@@ -2479,7 +2479,8 @@ if (wsp != 0 && isGroupable())

destroyed = wsp->checkGrouping(*this); // if we weren't grouped with another window we deiconify ourself - if (!destroyed && !iconic) + // make sure iconified windows stay that way on fluxbox start + if (!destroyed && !(iconic && Fluxbox::instance()->isStartup())) deiconify(false); }