diff options
-rw-r--r-- | doc/asciidoc/fluxbox.txt | 4 | ||||
-rw-r--r-- | src/Screen.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/asciidoc/fluxbox.txt b/doc/asciidoc/fluxbox.txt index 24e4bc0..9c4efc5 100644 --- a/doc/asciidoc/fluxbox.txt +++ b/doc/asciidoc/fluxbox.txt | |||
@@ -877,7 +877,7 @@ session.screen0.focusModel: ClickToFocus|MouseFocus | |||
877 | 877 | ||
878 | session.screen0.autoRaise: <boolean> | 878 | session.screen0.autoRaise: <boolean> |
879 | When True, this setting automatically raises any window that gains focus. | 879 | When True, this setting automatically raises any window that gains focus. |
880 | Default: False | 880 | Default: True |
881 | 881 | ||
882 | session.autoRaiseDelay: <integer> | 882 | session.autoRaiseDelay: <integer> |
883 | Adjusts the delay (in milli-sec) before focused windows will raise | 883 | Adjusts the delay (in milli-sec) before focused windows will raise |
@@ -955,7 +955,7 @@ session.screen0.colPlacementDirection: TopToBottom|BottomToTop | |||
955 | 955 | ||
956 | session.screen0.fullMaximization: <boolean> | 956 | session.screen0.fullMaximization: <boolean> |
957 | If this setting is enabled, windows will maximize over the toolbar and | 957 | If this setting is enabled, windows will maximize over the toolbar and |
958 | slit, no matter what their individual settings are. Default: True | 958 | slit, no matter what their individual settings are. Default: False |
959 | 959 | ||
960 | session.screen0.rootCommand: <command> | 960 | session.screen0.rootCommand: <command> |
961 | This runs a command when fluxbox starts, intended for setting a default | 961 | This runs a command when fluxbox starts, intended for setting a default |
diff --git a/src/Screen.cc b/src/Screen.cc index 90d0a4a..d7fc19a 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -284,12 +284,12 @@ BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm, | |||
284 | const string &altscrname): | 284 | const string &altscrname): |
285 | image_dither(rm, false, scrname+".imageDither", altscrname+".ImageDither"), | 285 | image_dither(rm, false, scrname+".imageDither", altscrname+".ImageDither"), |
286 | opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), | 286 | opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), |
287 | full_max(rm, true, scrname+".fullMaximization", altscrname+".FullMaximization"), | 287 | full_max(rm, false, scrname+".fullMaximization", altscrname+".FullMaximization"), |
288 | workspace_warping(rm, true, scrname+".workspacewarping", altscrname+".WorkspaceWarping"), | 288 | workspace_warping(rm, true, scrname+".workspacewarping", altscrname+".WorkspaceWarping"), |
289 | desktop_wheeling(rm, true, scrname+".desktopwheeling", altscrname+".DesktopWheeling"), | 289 | desktop_wheeling(rm, true, scrname+".desktopwheeling", altscrname+".DesktopWheeling"), |
290 | reverse_wheeling(rm, false, scrname+".reversewheeling", altscrname+".ReverseWheeling"), | 290 | reverse_wheeling(rm, false, scrname+".reversewheeling", altscrname+".ReverseWheeling"), |
291 | show_window_pos(rm, true, scrname+".showwindowposition", altscrname+".ShowWindowPosition"), | 291 | show_window_pos(rm, true, scrname+".showwindowposition", altscrname+".ShowWindowPosition"), |
292 | auto_raise(rm, false, scrname+".autoRaise", altscrname+".AutoRaise"), | 292 | auto_raise(rm, true, scrname+".autoRaise", altscrname+".AutoRaise"), |
293 | click_raises(rm, true, scrname+".clickRaises", altscrname+".ClickRaises"), | 293 | click_raises(rm, true, scrname+".clickRaises", altscrname+".ClickRaises"), |
294 | decorate_transient(rm, false, scrname+".decorateTransient", altscrname+".DecorateTransient"), | 294 | decorate_transient(rm, false, scrname+".decorateTransient", altscrname+".DecorateTransient"), |
295 | default_deco(rm, FluxboxWindow::DECORM_LAST-1, scrname+".defaultDeco", altscrname+".DefaultDeco"), | 295 | default_deco(rm, FluxboxWindow::DECORM_LAST-1, scrname+".defaultDeco", altscrname+".DefaultDeco"), |