diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/FbWinFrame.cc | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.16: | 2 | Changes for 0.9.16: |
3 | *06/04/17: | 3 | *06/04/17: |
4 | * Fix display of label for dialog-type boxes (Simon) | ||
5 | (only when external tabs are enabled, but not for particular window) | ||
6 | FbWinFrame.cc | ||
4 | * Fix fbrun position setting (-pos and -nearmouse args) (Simon) | 7 | * Fix fbrun position setting (-pos and -nearmouse args) (Simon) |
5 | util/fbrun/... FbRun.hh/cc main.cc | 8 | util/fbrun/... FbRun.hh/cc main.cc |
6 | * Resize the clock if the text gets too big, sf.net patch #1436406 | 9 | * Resize the clock if the text gets too big, sf.net patch #1436406 |
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc index ccf1087..a72b679 100644 --- a/src/FbWinFrame.cc +++ b/src/FbWinFrame.cc | |||
@@ -1216,7 +1216,7 @@ void FbWinFrame::applyTitlebar() { | |||
1216 | m_titlebar.setAlpha(alpha); | 1216 | m_titlebar.setAlpha(alpha); |
1217 | m_label.setAlpha(alpha); | 1217 | m_label.setAlpha(alpha); |
1218 | 1218 | ||
1219 | if (externalTabMode()) { | 1219 | if (m_tabmode != INTERNAL) { |
1220 | m_label.setGC(m_focused?theme().labelTextFocusGC():theme().labelTextUnfocusGC()); | 1220 | m_label.setGC(m_focused?theme().labelTextFocusGC():theme().labelTextUnfocusGC()); |
1221 | m_label.setJustify(theme().justify()); | 1221 | m_label.setJustify(theme().justify()); |
1222 | 1222 | ||