summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-08 20:34:37 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-08 20:34:37 +0300
commit83d1c87a45190454a3e99ad2a7323a72dead1ba5 (patch)
tree05658ace02ce2313ed4f87980731b3d640890f58 /src/gui/widgets/tabs
parentbc25e36e89779538adfd395c8d937c1677c20900 (diff)
downloadplus-83d1c87a45190454a3e99ad2a7323a72dead1ba5.tar.gz
plus-83d1c87a45190454a3e99ad2a7323a72dead1ba5.tar.bz2
plus-83d1c87a45190454a3e99ad2a7323a72dead1ba5.tar.xz
plus-83d1c87a45190454a3e99ad2a7323a72dead1ba5.zip
Fix tab text color update.
Diffstat (limited to 'src/gui/widgets/tabs')
-rw-r--r--src/gui/widgets/tabs/tab.cpp2
-rw-r--r--src/gui/widgets/tabs/tab.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/tab.cpp b/src/gui/widgets/tabs/tab.cpp
index 26f58e83b..c69f48c03 100644
--- a/src/gui/widgets/tabs/tab.cpp
+++ b/src/gui/widgets/tabs/tab.cpp
@@ -236,7 +236,7 @@ void Tab::draw(Graphics *graphics)
// mRedraw need here because no other way to say label to change color
// +++ text from label must be moved to tab itself
- if (labelMode != mLabelMode && mRedraw)
+ if (labelMode != mLabelMode || mRedraw)
{
mLabelMode = labelMode;
switch (labelMode)
diff --git a/src/gui/widgets/tabs/tab.h b/src/gui/widgets/tabs/tab.h
index 1bc225ee1..69cb7cf95 100644
--- a/src/gui/widgets/tabs/tab.h
+++ b/src/gui/widgets/tabs/tab.h
@@ -172,7 +172,7 @@ class Tab notfinal : public BasicContainer,
* Set tab flashing state
*/
void setFlash(const int flash)
- { mFlash = flash; }
+ { mFlash = flash; mRedraw = true; }
int getFlash() const A_WARN_UNUSED
{ return mFlash; }