all repos — openbox @ 3e21214a1d2f7e7c4f35ccc9f8f033d4d263e41a

openbox fork - make it a bit more like ryudo

don't make dock type windows auto-omni-present.
add some debug prints
Dana Jansens danakj@orodu.net
commit

3e21214a1d2f7e7c4f35ccc9f8f033d4d263e41a

parent

f7f5f3d08c278bc67a463be71aedc3d2822a15ae

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

jump to
M src/client.ccsrc/client.cc

@@ -76,7 +76,7 @@ updateClass();

updateStrut(); // this makes sure that these windows appear on all desktops - if (_type == Type_Dock || _type == Type_Desktop) + if (/*_type == Type_Dock ||*/ _type == Type_Desktop) _desktop = 0xffffffff; // set the desktop hint, to make sure that it always exists, and to reflect

@@ -133,7 +133,7 @@ if (otk::Property::get(_window, otk::Property::atoms.net_wm_desktop,

otk::Property::atoms.cardinal, (long unsigned*)&_desktop)) { #ifdef DEBUG - printf("DEBUG: Window requested desktop: %d\n", _desktop); + printf("DEBUG: Window requested desktop: %ld\n", _desktop); #endif } }

@@ -491,6 +491,10 @@ }

if (ur != _urgent) { _urgent = ur; +#ifdef DEBUG + printf("DEBUG: Urgent Hint for 0x%lx: %s\n", + (long)_window, _urgent ? "ON" : "OFF"); +#endif // fire the urgent callback if we're mapped, otherwise, wait until after // we're mapped if (_urgent && frame)