author | brad <brad> | 2004-04-11 14:28:42 (UTC) |
---|---|---|
committer | brad <brad> | 2004-04-11 14:28:42 (UTC) |
commit | 66f497a5c7990d7e54cc1ae26995231ade55b86c (patch) (side-by-side diff) | |
tree | c2e2a97a1ff6b40b8f76775a7479e0f19e7fce88 /core/applets | |
parent | 9716f8c5672a8596306a9b432d9fabc4361baea5 (diff) | |
download | opie-66f497a5c7990d7e54cc1ae26995231ade55b86c.zip opie-66f497a5c7990d7e54cc1ae26995231ade55b86c.tar.gz opie-66f497a5c7990d7e54cc1ae26995231ade55b86c.tar.bz2 |
Simple math reorganisation for jacket battery display (same as last one for main battery, I just missed it)
-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 858a794..ab8f36d 100644 --- a/core/applets/batteryapplet/batterystatus.cpp +++ b/core/applets/batteryapplet/batterystatus.cpp @@ -236,8 +236,8 @@ void BatteryStatus::paintEvent( QPaintEvent * ) { jacketMsg = tr("No jacket with battery inserted"); } - int jackPerc = ( jackPercent / 100 ) * ( width() - 47 ) ; - + int jackPerc = ( jackPercent * ( width() - 47 ) ) / 100; + qDrawShadePanel( &p, 9, 160, rightEnd1, 39, colorGroup(), TRUE, 1, NULL); qDrawShadePanel( &p, rightEnd2, 167, 12, 24, colorGroup(), TRUE, 1, NULL); drawSegment( &p, QRect( 10, 160, jackPerc, 40 ), lightc, darkc, lightc.light(115), 6 ); |