author | drw <drw> | 2005-08-09 18:10:46 (UTC) |
---|---|---|
committer | drw <drw> | 2005-08-09 18:10:46 (UTC) |
commit | 2630b8b81ddf6904379eedab4e3c307ee6399863 (patch) (unidiff) | |
tree | f88ea9ff42e77c322136de6dea4c5cb16e3e225e /libopie2 | |
parent | 438e79dd18c8b752f1e7d74a79f3cdf84f8703c8 (diff) | |
download | opie-2630b8b81ddf6904379eedab4e3c307ee6399863.zip opie-2630b8b81ddf6904379eedab4e3c307ee6399863.tar.gz opie-2630b8b81ddf6904379eedab4e3c307ee6399863.tar.bz2 |
Fix for bug #1682 - correct sizing of tab control
-rw-r--r-- | libopie2/opieui/otabwidget.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libopie2/opieui/otabwidget.cpp b/libopie2/opieui/otabwidget.cpp index d617a9c..7103884 100644 --- a/libopie2/opieui/otabwidget.cpp +++ b/libopie2/opieui/otabwidget.cpp | |||
@@ -121,6 +121,9 @@ void OTabWidget::addTab( QWidget *child, const QString &icon, const QString &lab | |||
121 | OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label ); | 121 | OTabInfo *tabinfo = new OTabInfo( tabid, child, icon, label ); |
122 | m_tabs.append( tabinfo ); | 122 | m_tabs.append( tabinfo ); |
123 | 123 | ||
124 | // Force resizing of child controls | ||
125 | resizeEvent( 0x0 ); | ||
126 | |||
124 | // Make newly added tab the current one displayed | 127 | // Make newly added tab the current one displayed |
125 | selectTab( tabinfo ); | 128 | selectTab( tabinfo ); |
126 | } | 129 | } |
@@ -167,6 +170,9 @@ void OTabWidget::removePage( QWidget *childwidget ) | |||
167 | // Redraw widget | 170 | // Redraw widget |
168 | setUpLayout(); | 171 | setUpLayout(); |
169 | } | 172 | } |
173 | |||
174 | // Force resizing of child controls | ||
175 | resizeEvent( 0x0 ); | ||
170 | } | 176 | } |
171 | } | 177 | } |
172 | 178 | ||
@@ -208,6 +214,9 @@ void OTabWidget::changeTab( QWidget *widget, const QString &iconset, const QStri | |||
208 | currtab->setLabel( label ); | 214 | currtab->setLabel( label ); |
209 | currtab->setIcon( iconset ); | 215 | currtab->setIcon( iconset ); |
210 | 216 | ||
217 | // Force resizing of child controls | ||
218 | resizeEvent( 0x0 ); | ||
219 | |||
211 | // Redraw widget | 220 | // Redraw widget |
212 | setUpLayout(); | 221 | setUpLayout(); |
213 | } | 222 | } |