summaryrefslogtreecommitdiff
authoralwin <alwin>2004-11-08 23:09:11 (UTC)
committer alwin <alwin>2004-11-08 23:09:11 (UTC)
commit4638c11f127d420818e2356359ae6f2223fb4407 (patch) (unidiff)
tree423eabc9469964ced331b04aa51730f13de0b062
parent1480f96170cb7cd7c262a14ad56ff08f384de10f (diff)
downloadopie-4638c11f127d420818e2356359ae6f2223fb4407.zip
opie-4638c11f127d420818e2356359ae6f2223fb4407.tar.gz
opie-4638c11f127d420818e2356359ae6f2223fb4407.tar.bz2
ui. in BigScreenmode it had an deep recursion in layout setup. I had
just commented out that line (353) - it seems to work now, but I'm not sure if it is correct. I think, this widget should be checked carefully.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/otabwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opieui/otabwidget.cpp b/libopie2/opieui/otabwidget.cpp
index d23b1c9..80a4c9b 100644
--- a/libopie2/opieui/otabwidget.cpp
+++ b/libopie2/opieui/otabwidget.cpp
@@ -341,25 +341,25 @@ QPixmap OTabWidget::loadSmooth( const QString &name )
341 341
342void OTabWidget::selectTab( OTabInfo *tab ) 342void OTabWidget::selectTab( OTabInfo *tab )
343{ 343{
344 if ( tabBarStyle == IconTab ) 344 if ( tabBarStyle == IconTab )
345 { 345 {
346 if ( currTab ) 346 if ( currTab )
347 { 347 {
348 tabBar->tab( currTab->id() )->setText( QString::null ); 348 tabBar->tab( currTab->id() )->setText( QString::null );
349 setUpLayout(); 349 setUpLayout();
350 } 350 }
351 tabBar->tab( tab->id() )->setText( tab->label() ); 351 tabBar->tab( tab->id() )->setText( tab->label() );
352 tabBar->setCurrentTab( tab->id() ); 352 tabBar->setCurrentTab( tab->id() );
353 setUpLayout(); 353// setUpLayout();
354 tabBar->update(); 354 tabBar->update();
355 } 355 }
356 else 356 else
357 { 357 {
358 tabBar->setCurrentTab( tab->id() ); 358 tabBar->setCurrentTab( tab->id() );
359 } 359 }
360 360
361 widgetStack->raiseWidget( tab->control() ); 361 widgetStack->raiseWidget( tab->control() );
362 362
363 emit currentChanged( tab->control() ); 363 emit currentChanged( tab->control() );
364 364
365 currTab = tab; 365 currTab = tab;