all repos — openbox @ a0a9b0334b32e205da994b0395af1b544888a5dd

openbox fork - make it a bit more like ryudo

make the internal window type more easily inheritable
Dana Jansens danakj@orodu.net
commit

a0a9b0334b32e205da994b0395af1b544888a5dd

parent

5f04ca85ef6a2ebc2d66842e261a676691e9b4de

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

jump to
M openbox/focus_cycle_indicator.copenbox/focus_cycle_indicator.c

@@ -59,10 +59,10 @@ visible = FALSE;

if (reconfig) return; - focus_indicator.top.obwin.type = OB_WINDOW_CLASS_INTERNAL; - focus_indicator.left.obwin.type = OB_WINDOW_CLASS_INTERNAL; - focus_indicator.right.obwin.type = OB_WINDOW_CLASS_INTERNAL; - focus_indicator.bottom.obwin.type = OB_WINDOW_CLASS_INTERNAL; + focus_indicator.top.type = OB_WINDOW_CLASS_INTERNAL; + focus_indicator.left.type = OB_WINDOW_CLASS_INTERNAL; + focus_indicator.right.type = OB_WINDOW_CLASS_INTERNAL; + focus_indicator.bottom.type = OB_WINDOW_CLASS_INTERNAL; attr.override_redirect = True; attr.background_pixel = BlackPixel(obt_display, ob_screen);
M openbox/window.hopenbox/window.h

@@ -76,7 +76,7 @@ void window_remove(Window xwin);

/* Internal openbox-owned windows like the alt-tab popup */ struct _ObInternalWindow { - ObWindow obwin; + ObWindowClass type; Window window; };