changed default value for decorateTransients in the init file -- see sf.net bug #1604959 for explanation
markt markt
2 files changed,
2 insertions(+),
2 deletions(-)
M
doc/asciidoc/fluxbox.txt
→
doc/asciidoc/fluxbox.txt
@@ -901,7 +901,7 @@
session.screen0.decorateTransient: <boolean> This controls whether or not transient windows get certain window decorations, currently the maximize button and handle. - Default: False + Default: True session.screen0.defaultDeco: <bitmask> This specifies the default window decorations, according to the same
M
src/Screen.cc
→
src/Screen.cc
@@ -291,7 +291,7 @@ reverse_wheeling(rm, false, scrname+".reversewheeling", altscrname+".ReverseWheeling"),
show_window_pos(rm, true, scrname+".showwindowposition", altscrname+".ShowWindowPosition"), auto_raise(rm, true, scrname+".autoRaise", altscrname+".AutoRaise"), click_raises(rm, true, scrname+".clickRaises", altscrname+".ClickRaises"), - decorate_transient(rm, false, scrname+".decorateTransient", altscrname+".DecorateTransient"), + decorate_transient(rm, true, scrname+".decorateTransient", altscrname+".DecorateTransient"), default_deco(rm, FluxboxWindow::DECORM_LAST-1, scrname+".defaultDeco", altscrname+".DefaultDeco"), rootcommand(rm, "", scrname+".rootCommand", altscrname+".RootCommand"), resize_model(rm, BOTTOMRESIZE, scrname+".resizeMode", altscrname+".ResizeMode"),