Bug 104398

Summary: left panel is too big on RTL desktops
Product: [Applications] akregator Reporter: Diego Iastrubni <cuco3001>
Component: generalAssignee: kdepim bugs <kdepim-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Diego Iastrubni 2005-04-22 23:00:42 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

When I run akregator with Hebrew translation (not yet on CVS), the left panel which contains the list of feeds takes the whole screen.

I can reproduce it with akregator beta10 (english UI) using :
akregator --reverse

It happens also when I run akregator inside kontact and kontact is in RTL mode.

BTW: close #93739 ;)
Comment 1 Heinrich Wendel 2005-06-28 15:49:21 UTC
SVN commit 429658 by lanius:

fix --reverse
BUG: 104398

 M  +1 -0      tabwidget.cpp  


--- trunk/KDE/kdepim/akregator/src/tabwidget.cpp #429657:429658
@@ -51,6 +51,7 @@
 TabWidget::TabWidget(QWidget * parent, const char *name)
         :KTabWidget(parent, name), m_CurrentMaxLength(30)
 {
+    setMinimumSize(250,150);
     setTabReorderingEnabled(false);
     connect( this, SIGNAL( currentChanged(QWidget *) ), this,
             SLOT( slotTabChanged(QWidget *) ) );