From 83d1c87a45190454a3e99ad2a7323a72dead1ba5 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 8 Jun 2015 20:34:37 +0300 Subject: Fix tab text color update. --- src/gui/widgets/tabs/tab.cpp | 2 +- src/gui/widgets/tabs/tab.h | 2 +- 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; } -- cgit v1.2.3-60-g2f50