change defaults for fullMaximization and autoRaise

This commit is contained in:
markt 2007-02-05 19:10:10 +00:00
parent e4488da120
commit ebd2fa9a99
2 changed files with 4 additions and 4 deletions

View file

@ -877,7 +877,7 @@ session.screen0.focusModel: ClickToFocus|MouseFocus
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 @@ session.screen0.colPlacementDirection: TopToBottom|BottomToTop
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

View file

@ -284,12 +284,12 @@ BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm,
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"),