summaryrefslogtreecommitdiff
path: root/core/applets/batteryapplet
Unidiff
Diffstat (limited to 'core/applets/batteryapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index f27543c..addb517 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -252,11 +252,11 @@ QSize BatteryStatus::sizeHint() const {
252 QFontMetrics fm = fontMetrics(); 252 QFontMetrics fm = fontMetrics();
253 QRect r=fm.boundingRect( 10, 0, width(), height(), AlignVCenter, text ); 253 QRect r=fm.boundingRect( 10, 0, width(), height(), AlignVCenter, text );
254 QRect r2=fm.boundingRect( 10, 0, width(), height(), AlignVCenter, text2 ); 254 QRect r2=fm.boundingRect( 10, 0, width(), height(), AlignVCenter, text2 );
255 255
256 if ( bat2 ) { 256 if ( bat2 ) {
257 return QSize( QMAX( QMIN( 200, qApp->desktop()->width() ), 257 return QSize( QMAX( QMIN( 200, qApp->desktop()->width() ),
258 r.width() ), 2 * 10 + 80 + r.height() + r2.height() ); 258 r.width()+2*10 ), 2 * 10 + 80 + r.height() + r2.height() );
259 } 259 }
260 return QSize( QMAX( QMIN( 200, qApp->desktop()->width() ), 260 return QSize( QMAX( QMIN( 200, qApp->desktop()->width() ),
261 r.width() ), 2 * 10 + 40 + r.height() ); 261 r.width()+2*10 ), 2 * 10 + 40 + r.height() );
262} 262}