diff options
Diffstat (limited to 'src/gui/widgets/tab.cpp')
-rw-r--r-- | src/gui/widgets/tab.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp index 99a95d96..a49c4f12 100644 --- a/src/gui/widgets/tab.cpp +++ b/src/gui/widgets/tab.cpp @@ -150,7 +150,8 @@ void Tab::draw(gcn::Graphics *graphics) mode = TAB_SELECTED; // if tab is selected, it doesnt need to highlight activity mHighlighted = false; - } else if (mHasMouse) + } + else if (mHasMouse) { mode = TAB_HIGHLIGHTED; } |