summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabbedarea.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-12 18:58:13 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-12 18:58:13 +0300
commitc5f980195ebf4e249b8759d660a703803fc3e369 (patch)
tree9e1bc9d0a5b67ee9f3fbe2b6f7e3b48549724465 /src/gui/widgets/tabbedarea.cpp
parent752a02d2990db39dc7f3d193951c9f8375c31889 (diff)
downloadplus-c5f980195ebf4e249b8759d660a703803fc3e369.tar.gz
plus-c5f980195ebf4e249b8759d660a703803fc3e369.tar.bz2
plus-c5f980195ebf4e249b8759d660a703803fc3e369.tar.xz
plus-c5f980195ebf4e249b8759d660a703803fc3e369.zip
fix chat tabs scrolling issue with enabled colors picker.
Diffstat (limited to 'src/gui/widgets/tabbedarea.cpp')
-rw-r--r--src/gui/widgets/tabbedarea.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp
index dee1640ad..6a579d792 100644
--- a/src/gui/widgets/tabbedarea.cpp
+++ b/src/gui/widgets/tabbedarea.cpp
@@ -485,7 +485,7 @@ void TabbedArea::adjustSize()
maxTabHeight = mTabs[i].first->getHeight();
}
- mTabContainer->setSize(width - 2, maxTabHeight);
+ mTabContainer->setSize(width - mRightMargin, maxTabHeight);
mWidgetContainer->setPosition(0, maxTabHeight);
mWidgetContainer->setSize(width, height - maxTabHeight);