change default toolbar head from 0 to 1

This commit is contained in:
Mark Tiefenbruck 2009-06-28 04:11:49 -07:00
parent f2c0175a72
commit f3d61235f3
4 changed files with 146 additions and 297 deletions

View file

@ -1,6 +1,8 @@
(Format: Year/Month/Day) (Format: Year/Month/Day)
Changes for 1.1.2 Changes for 1.1.2
*09/06/28: *09/06/28:
* Change default toolbar head to 1 (Mark)
Toolbar.cc
* Add window menu and alt-tab to error case for keys file (Mark) * Add window menu and alt-tab to error case for keys file (Mark)
Keys.cc Keys.cc
* Revert to relative iconbar alignment when too many windows are open (Mark) * Revert to relative iconbar alignment when too many windows are open (Mark)

View file

@ -940,7 +940,7 @@ For those that use xinerama, users can set this value to the number of the
head where they would like to see the slit and toolbar, starting from 1. head where they would like to see the slit and toolbar, starting from 1.
Setting this to 0 will ignore xinerama information. Setting this to 0 will ignore xinerama information.
+ +
Default: *0* Default: *0* for slit, *1* for toolbar
*session.screen0.iconbar.mode*: 'pattern':: *session.screen0.iconbar.mode*: 'pattern'::
This determines which windows will be displayed in the iconbar. Any window This determines which windows will be displayed in the iconbar. Any window

File diff suppressed because it is too large Load diff

View file

@ -238,7 +238,7 @@ Toolbar::Toolbar(BScreen &scrn, FbTk::XLayer &layer, size_t width):
scrn.name() + ".toolbar.alpha", scrn.altName() + ".Toolbar.Alpha"), scrn.name() + ".toolbar.alpha", scrn.altName() + ".Toolbar.Alpha"),
m_rc_layernum(scrn.resourceManager(), Layer(Layer::DOCK), m_rc_layernum(scrn.resourceManager(), Layer(Layer::DOCK),
scrn.name() + ".toolbar.layer", scrn.altName() + ".Toolbar.Layer"), scrn.name() + ".toolbar.layer", scrn.altName() + ".Toolbar.Layer"),
m_rc_on_head(scrn.resourceManager(), 0, m_rc_on_head(scrn.resourceManager(), 1,
scrn.name() + ".toolbar.onhead", scrn.altName() + ".Toolbar.onHead"), scrn.name() + ".toolbar.onhead", scrn.altName() + ".Toolbar.onHead"),
m_rc_placement(scrn.resourceManager(), Toolbar::BOTTOMCENTER, m_rc_placement(scrn.resourceManager(), Toolbar::BOTTOMCENTER,
scrn.name() + ".toolbar.placement", scrn.altName() + ".Toolbar.Placement"), scrn.name() + ".toolbar.placement", scrn.altName() + ".Toolbar.Placement"),