diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/FbWinFrame.cc | 4 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.13 | 2 | Changes for 0.9.13 |
3 | *05/05/07: | ||
4 | * Fix titlebar transparency in some (tabbed) cases (Simon) | ||
5 | FbWinFrame.cc | ||
3 | *05/05/06: | 6 | *05/05/06: |
4 | * Added new Buttons for the Titlebar of a Window (Mathias) | 7 | * Added new Buttons for the Titlebar of a Window (Mathias) |
5 | - Shade - just like the "Stick"-button | 8 | - Shade - just like the "Stick"-button |
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc index cdbc6c1..2b94ae3 100644 --- a/src/FbWinFrame.cc +++ b/src/FbWinFrame.cc | |||
@@ -271,7 +271,7 @@ void FbWinFrame::setFocus(bool newvalue) { | |||
271 | 271 | ||
272 | m_focused = newvalue; | 272 | m_focused = newvalue; |
273 | 273 | ||
274 | if (theme().focusedAlpha() != theme().unfocusedAlpha()) { | 274 | if (FbTk::Transparent::haveRender() && theme().focusedAlpha() != theme().unfocusedAlpha()) { |
275 | unsigned char alpha = (m_focused?theme().focusedAlpha():theme().unfocusedAlpha()); | 275 | unsigned char alpha = (m_focused?theme().focusedAlpha():theme().unfocusedAlpha()); |
276 | if (FbTk::Transparent::haveComposite()) { | 276 | if (FbTk::Transparent::haveComposite()) { |
277 | m_window.setOpaque(alpha); | 277 | m_window.setOpaque(alpha); |
@@ -280,6 +280,8 @@ void FbWinFrame::setFocus(bool newvalue) { | |||
280 | LabelList::iterator btn_it_end = m_labelbuttons.end(); | 280 | LabelList::iterator btn_it_end = m_labelbuttons.end(); |
281 | for (; btn_it != btn_it_end; ++btn_it) { | 281 | for (; btn_it != btn_it_end; ++btn_it) { |
282 | (*btn_it)->setAlpha(alpha); | 282 | (*btn_it)->setAlpha(alpha); |
283 | if (m_current_label != (*btn_it)) | ||
284 | (*btn_it)->updateBackground(false); | ||
283 | } | 285 | } |
284 | } | 286 | } |
285 | } | 287 | } |