diff --git a/doc/asciidoc/fluxbox.1 b/doc/asciidoc/fluxbox.1 index dfa52e52..11f70d97 100644 --- a/doc/asciidoc/fluxbox.1 +++ b/doc/asciidoc/fluxbox.1 @@ -1,11 +1,11 @@ .\" Title: fluxbox .\" Author: .\" Generator: DocBook XSL Stylesheets v1.73.2 -.\" Date: 09/02/2008 +.\" Date: 09/04/2008 .\" Manual: .\" Source: .\" -.TH "FLUXBOX" "1" "09/02/2008" "" "" +.TH "FLUXBOX" "1" "09/04/2008" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -1004,7 +1004,7 @@ session\.screen0\.rootCommand: session\.screen0\.opaqueMove: When moving a window, setting this to True will draw the window contents as it moves (this is nasty on slow systems)\. If False, it - will only draw an outline of the window border\. Default: False + will only draw an outline of the window border\. Default: True session\.screen0\.workspaces: Set this to the number of workspaces the users wants\. Default: 4 diff --git a/doc/asciidoc/fluxbox.txt b/doc/asciidoc/fluxbox.txt index 6db07fa8..f3299e3a 100644 --- a/doc/asciidoc/fluxbox.txt +++ b/doc/asciidoc/fluxbox.txt @@ -926,7 +926,7 @@ session.screen0.rootCommand: session.screen0.opaqueMove: When moving a window, setting this to True will draw the window contents as it moves (this is nasty on slow systems). If False, it - will only draw an outline of the window border. Default: False + will only draw an outline of the window border. Default: True session.screen0.workspaces: Set this to the number of workspaces the users wants. Default: 4 diff --git a/doc/fluxbox.1.in b/doc/fluxbox.1.in index dfa52e52..11f70d97 100644 --- a/doc/fluxbox.1.in +++ b/doc/fluxbox.1.in @@ -1,11 +1,11 @@ .\" Title: fluxbox .\" Author: .\" Generator: DocBook XSL Stylesheets v1.73.2 -.\" Date: 09/02/2008 +.\" Date: 09/04/2008 .\" Manual: .\" Source: .\" -.TH "FLUXBOX" "1" "09/02/2008" "" "" +.TH "FLUXBOX" "1" "09/04/2008" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -1004,7 +1004,7 @@ session\.screen0\.rootCommand: session\.screen0\.opaqueMove: When moving a window, setting this to True will draw the window contents as it moves (this is nasty on slow systems)\. If False, it - will only draw an outline of the window border\. Default: False + will only draw an outline of the window border\. Default: True session\.screen0\.workspaces: Set this to the number of workspaces the users wants\. Default: 4 diff --git a/src/Screen.cc b/src/Screen.cc index 23f85a5c..ac5b11e3 100644 --- a/src/Screen.cc +++ b/src/Screen.cc @@ -286,7 +286,7 @@ getString() const { BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm, const string &scrname, const string &altscrname): - opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), + opaque_move(rm, true, scrname + ".opaqueMove", altscrname+".OpaqueMove"), full_max(rm, false, scrname+".fullMaximization", altscrname+".FullMaximization"), max_ignore_inc(rm, true, scrname+".maxIgnoreIncrement", altscrname+".MaxIgnoreIncrement"), max_disable_move(rm, false, scrname+".maxDisableMove", altscrname+".MaxDisableMove"),