Package: icewm Version: 1.2.30-1 Severity: minor Tags: patch Icewm does not honor IconicState in WM_HINTS properties. (This is the classical and the only Xt programs set when told to start up iconificated). The attached patch fixes this for me.
Hochachtungsvoll, Bernhard R. Link
diff -r -u icewm-old/src/wmframe.cc icewm-1.2.30/src/wmframe.cc --- icewm-old/src/wmframe.cc 2006-12-24 17:05:00.000000000 +0100 +++ icewm-1.2.30/src/wmframe.cc 2007-06-12 18:09:58.000000000 +0200 @@ -422,6 +422,7 @@ MSG(("FRAME state = %d", st)); switch (st) { case IconicState: + fFrameOptions |= foMinimized; setState(WinStateMinimized, WinStateMinimized); break;