diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Remember.cc | 2 | ||||
-rw-r--r-- | src/Toolbar.cc | 3 |
3 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *06/12/28: | 3 | *06/12/28: |
4 | * Don't add 2 pixels to a specified toolbar height, bug #1528646 (Mark) | ||
5 | Toolbar.cc | ||
6 | *06/12/28: | ||
4 | * Allow focus to revert to stuck windows (Mark) | 7 | * Allow focus to revert to stuck windows (Mark) |
5 | FocusControl.cc | 8 | FocusControl.cc |
6 | *06/12/27: | 9 | *06/12/27: |
diff --git a/src/Remember.cc b/src/Remember.cc index b705b0d..9035325 100644 --- a/src/Remember.cc +++ b/src/Remember.cc | |||
@@ -126,7 +126,7 @@ private: | |||
126 | FbTk::Menu *createRememberMenu(BScreen &screen) { | 126 | FbTk::Menu *createRememberMenu(BScreen &screen) { |
127 | // each fluxboxwindow has its own windowmenu | 127 | // each fluxboxwindow has its own windowmenu |
128 | // so we also create a remember menu just for it... | 128 | // so we also create a remember menu just for it... |
129 | FbTk::Menu *menu = screen.createMenu(""); | 129 | FbTk::Menu *menu = screen.createMenu("Remember"); |
130 | 130 | ||
131 | // if enabled, then we want this to be a unavailable menu | 131 | // if enabled, then we want this to be a unavailable menu |
132 | /* | 132 | /* |
diff --git a/src/Toolbar.cc b/src/Toolbar.cc index 6c4837a..3e825b8 100644 --- a/src/Toolbar.cc +++ b/src/Toolbar.cc | |||
@@ -640,7 +640,7 @@ void Toolbar::setPlacement(Toolbar::Placement where) { | |||
640 | frame.width = (head_w - 2*border_width) * (*m_rc_width_percent) / 100; | 640 | frame.width = (head_w - 2*border_width) * (*m_rc_width_percent) / 100; |
641 | //!! TODO: change this | 641 | //!! TODO: change this |
642 | // max height of each toolbar items font... | 642 | // max height of each toolbar items font... |
643 | unsigned int max_height = m_tool_factory.maxFontHeight(); | 643 | unsigned int max_height = m_tool_factory.maxFontHeight() + 2; |
644 | 644 | ||
645 | if (theme().height() > 0) | 645 | if (theme().height() > 0) |
646 | max_height = theme().height(); | 646 | max_height = theme().height(); |
@@ -650,7 +650,6 @@ void Toolbar::setPlacement(Toolbar::Placement where) { | |||
650 | 650 | ||
651 | frame.height = max_height; | 651 | frame.height = max_height; |
652 | 652 | ||
653 | frame.height += 2; | ||
654 | frame.height += (frame.bevel_w * 2); | 653 | frame.height += (frame.bevel_w * 2); |
655 | 654 | ||
656 | // should we flipp sizes? | 655 | // should we flipp sizes? |