author | drw <drw> | 2004-12-20 23:49:31 (UTC) |
---|---|---|
committer | drw <drw> | 2004-12-20 23:49:31 (UTC) |
commit | faf7441b78dfc293f1dea1edebc202244fc3a1cf (patch) (unidiff) | |
tree | e4db8589e4c8838fdf8ec5f71381e268c53dc0b0 /core | |
parent | ef69c13359fc437a439eb3b018e7b29fb625c9a7 (diff) | |
download | opie-faf7441b78dfc293f1dea1edebc202244fc3a1cf.zip opie-faf7441b78dfc293f1dea1edebc202244fc3a1cf.tar.gz opie-faf7441b78dfc293f1dea1edebc202244fc3a1cf.tar.bz2 |
Fix sizing of battery status popup window to prevent truncation of battery info
-rw-r--r-- | core/applets/batteryapplet/batterystatus.cpp | 4 |
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 | |||
@@ -255,8 +255,8 @@ QSize BatteryStatus::sizeHint() const { | |||
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 | } |