changed default value for decorateTransients in the init file
-- see sf.net bug #1604959 for explanation
This commit is contained in:
parent
4eb87522a0
commit
48bd3f49bc
2 changed files with 2 additions and 2 deletions
|
@ -901,7 +901,7 @@ session.screen0.showwindowposition: <boolean>
|
|||
session.screen0.decorateTransient: <boolean>
|
||||
This controls whether or not transient windows get certain window
|
||||
decorations, currently the maximize button and handle.
|
||||
Default: False
|
||||
Default: True
|
||||
|
||||
session.screen0.defaultDeco: <bitmask>
|
||||
This specifies the default window decorations, according to the same
|
||||
|
|
|
@ -291,7 +291,7 @@ BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm,
|
|||
show_window_pos(rm, true, scrname+".showwindowposition", altscrname+".ShowWindowPosition"),
|
||||
auto_raise(rm, true, scrname+".autoRaise", altscrname+".AutoRaise"),
|
||||
click_raises(rm, true, scrname+".clickRaises", altscrname+".ClickRaises"),
|
||||
decorate_transient(rm, false, scrname+".decorateTransient", altscrname+".DecorateTransient"),
|
||||
decorate_transient(rm, true, scrname+".decorateTransient", altscrname+".DecorateTransient"),
|
||||
default_deco(rm, FluxboxWindow::DECORM_LAST-1, scrname+".defaultDeco", altscrname+".DefaultDeco"),
|
||||
rootcommand(rm, "", scrname+".rootCommand", altscrname+".RootCommand"),
|
||||
resize_model(rm, BOTTOMRESIZE, scrname+".resizeMode", altscrname+".ResizeMode"),
|
||||
|
|
Loading…
Reference in a new issue