diff options
Diffstat (limited to 'src/gui/widgets/tabbedarea.cpp')
-rw-r--r-- | src/gui/widgets/tabbedarea.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp index 25fc3b8f2..88d12764a 100644 --- a/src/gui/widgets/tabbedarea.cpp +++ b/src/gui/widgets/tabbedarea.cpp @@ -196,6 +196,13 @@ void TabbedArea::addTab(Tab *const tab, gcn::Widget *const widget) updateArrowEnableState(); } +void TabbedArea::adjustWidget(gcn::Widget *const widget) const +{ + const int frameSize = 2 * mFrameSize; + widget->setSize(getWidth() - frameSize, + getHeight() - frameSize - mTabContainer->getHeight()); +} + void TabbedArea::addTab(const std::string &caption, gcn::Widget *const widget) { Tab *const tab = new Tab(this); |