turn on opaque window moving by default

This commit is contained in:
Mark Tiefenbruck 2008-09-04 14:27:21 -04:00
parent 27dc136121
commit b288fc1401
4 changed files with 8 additions and 8 deletions

View file

@ -1,11 +1,11 @@
.\" Title: fluxbox .\" Title: fluxbox
.\" Author: .\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\" Date: 09/02/2008 .\" Date: 09/04/2008
.\" Manual: .\" Manual:
.\" Source: .\" Source:
.\" .\"
.TH "FLUXBOX" "1" "09/02/2008" "" "" .TH "FLUXBOX" "1" "09/04/2008" "" ""
.\" disable hyphenation .\" disable hyphenation
.nh .nh
.\" disable justification (adjust text to left margin only) .\" disable justification (adjust text to left margin only)
@ -1004,7 +1004,7 @@ session\.screen0\.rootCommand: <command>
session\.screen0\.opaqueMove: <boolean> session\.screen0\.opaqueMove: <boolean>
When moving a window, setting this to True will draw the window 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 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: <integer> session\.screen0\.workspaces: <integer>
Set this to the number of workspaces the users wants\. Default: 4 Set this to the number of workspaces the users wants\. Default: 4

View file

@ -926,7 +926,7 @@ session.screen0.rootCommand: <command>
session.screen0.opaqueMove: <boolean> session.screen0.opaqueMove: <boolean>
When moving a window, setting this to True will draw the window 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 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: <integer> session.screen0.workspaces: <integer>
Set this to the number of workspaces the users wants. Default: 4 Set this to the number of workspaces the users wants. Default: 4

View file

@ -1,11 +1,11 @@
.\" Title: fluxbox .\" Title: fluxbox
.\" Author: .\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\" Date: 09/02/2008 .\" Date: 09/04/2008
.\" Manual: .\" Manual:
.\" Source: .\" Source:
.\" .\"
.TH "FLUXBOX" "1" "09/02/2008" "" "" .TH "FLUXBOX" "1" "09/04/2008" "" ""
.\" disable hyphenation .\" disable hyphenation
.nh .nh
.\" disable justification (adjust text to left margin only) .\" disable justification (adjust text to left margin only)
@ -1004,7 +1004,7 @@ session\.screen0\.rootCommand: <command>
session\.screen0\.opaqueMove: <boolean> session\.screen0\.opaqueMove: <boolean>
When moving a window, setting this to True will draw the window 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 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: <integer> session\.screen0\.workspaces: <integer>
Set this to the number of workspaces the users wants\. Default: 4 Set this to the number of workspaces the users wants\. Default: 4

View file

@ -286,7 +286,7 @@ getString() const {
BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm, BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm,
const string &scrname, const string &scrname,
const string &altscrname): 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"), full_max(rm, false, scrname+".fullMaximization", altscrname+".FullMaximization"),
max_ignore_inc(rm, true, scrname+".maxIgnoreIncrement", altscrname+".MaxIgnoreIncrement"), max_ignore_inc(rm, true, scrname+".maxIgnoreIncrement", altscrname+".MaxIgnoreIncrement"),
max_disable_move(rm, false, scrname+".maxDisableMove", altscrname+".MaxDisableMove"), max_disable_move(rm, false, scrname+".maxDisableMove", altscrname+".MaxDisableMove"),