all repos — openbox @ ca1656725301ff81b0b8fad6af71c21ce5edd558

openbox fork - make it a bit more like ryudo

make popup windows saveunder
Mikael Magnusson mikachu@comhem.se
commit

ca1656725301ff81b0b8fad6af71c21ce5edd558

parent

b3fa579a61b6259defa0cd718ab7047862cf506f

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

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

@@ -40,10 +40,11 @@ self->a_bg = RrAppearanceCopy(ob_rr_theme->app_hilite_bg);

self->a_text = RrAppearanceCopy(ob_rr_theme->app_hilite_label); attrib.override_redirect = True; + attrib.save_under = True; self->bg = XCreateWindow(ob_display, RootWindow(ob_display, ob_screen), 0, 0, 1, 1, 0, RrDepth(ob_rr_inst), InputOutput, RrVisual(ob_rr_inst), - CWOverrideRedirect, &attrib); + CWOverrideRedirect | CWSaveUnder, &attrib); self->text = XCreateWindow(ob_display, self->bg, 0, 0, 1, 1, 0, RrDepth(ob_rr_inst),