change defaults for fullMaximization and autoRaise
markt markt
2 files changed,
4 insertions(+),
4 deletions(-)
M
doc/asciidoc/fluxbox.txt
→
doc/asciidoc/fluxbox.txt
@@ -877,7 +877,7 @@ whenever the mouse moves over them. Default: ClickToFocus
session.screen0.autoRaise: <boolean> When True, this setting automatically raises any window that gains focus. - Default: False + Default: True session.autoRaiseDelay: <integer> Adjusts the delay (in milli-sec) before focused windows will raise@@ -955,7 +955,7 @@ Default: LeftToRight/TopToBottom
session.screen0.fullMaximization: <boolean> If this setting is enabled, windows will maximize over the toolbar and - slit, no matter what their individual settings are. Default: True + slit, no matter what their individual settings are. Default: False session.screen0.rootCommand: <command> This runs a command when fluxbox starts, intended for setting a default
M
src/Screen.cc
→
src/Screen.cc
@@ -284,12 +284,12 @@ const string &scrname,
const string &altscrname): image_dither(rm, false, scrname+".imageDither", altscrname+".ImageDither"), opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), - full_max(rm, true, scrname+".fullMaximization", altscrname+".FullMaximization"), + full_max(rm, false, scrname+".fullMaximization", altscrname+".FullMaximization"), workspace_warping(rm, true, scrname+".workspacewarping", altscrname+".WorkspaceWarping"), desktop_wheeling(rm, true, scrname+".desktopwheeling", altscrname+".DesktopWheeling"), reverse_wheeling(rm, false, scrname+".reversewheeling", altscrname+".ReverseWheeling"), show_window_pos(rm, true, scrname+".showwindowposition", altscrname+".ShowWindowPosition"), - auto_raise(rm, false, scrname+".autoRaise", altscrname+".AutoRaise"), + auto_raise(rm, true, scrname+".autoRaise", altscrname+".AutoRaise"), click_raises(rm, true, scrname+".clickRaises", altscrname+".ClickRaises"), decorate_transient(rm, false, scrname+".decorateTransient", altscrname+".DecorateTransient"), default_deco(rm, FluxboxWindow::DECORM_LAST-1, scrname+".defaultDeco", altscrname+".DefaultDeco"),