diff options
author | Koen Kooi <koen@openembedded.org> | 2006-02-05 10:47:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-05 10:47:57 +0000 |
commit | d8d62e47067d3049939327d8fddf07700a3f0aad (patch) | |
tree | 04ba097d0339ccbee0011872385d75e7ea852499 /packages/matchbox-panel | |
parent | 8e80a354ffb30d94054553fc1adec9e2c20dacaf (diff) |
matchbox-panel: apply patch to stop wastefull battery polling, closes hh.org bug #1474
Diffstat (limited to 'packages/matchbox-panel')
-rw-r--r-- | packages/matchbox-panel/matchbox-panel-0.9.2/mb-applet-battery-repaint.patch | 43 | ||||
-rw-r--r-- | packages/matchbox-panel/matchbox-panel_0.9.2.bb | 3 |
2 files changed, 45 insertions, 1 deletions
diff --git a/packages/matchbox-panel/matchbox-panel-0.9.2/mb-applet-battery-repaint.patch b/packages/matchbox-panel/matchbox-panel-0.9.2/mb-applet-battery-repaint.patch new file mode 100644 index 0000000000..7d5c53f165 --- /dev/null +++ b/packages/matchbox-panel/matchbox-panel-0.9.2/mb-applet-battery-repaint.patch @@ -0,0 +1,43 @@ +--- matchbox-panel-0.9.2/applets/mb-applet-battery.c.orig 2005-04-06 22:20:45.000000000 +0200 ++++ matchbox-panel-0.9.2/applets/mb-applet-battery.c 2006-02-01 01:21:17.000000000 +0100 +@@ -200,23 +200,12 @@ + void + paint_callback (MBTrayApp *app, Drawable drw ) + { +- +- + int power_pixels = 0; + unsigned char r = 0, g = 0, b = 0; + int x, y; + int bar_width, bar_height, bar_x, bar_y; + + MBPixbufImage *img_backing = NULL; +- +- +- +- +- while (!read_apm(apm_vals)) +- usleep(50000L); +- +- if (last_percentage == apm_vals[PERCENTAGE] && last_ac == apm_vals[AC_POWER]) +- return; + + img_backing = mb_tray_app_get_background (app, pb); + +@@ -409,10 +398,12 @@ + + } + +-void +-timeout_callback ( MBTrayApp *app ) +-{ +- mb_tray_app_repaint (app); ++void timeout_callback (MBTrayApp *app) { ++ while (!read_apm(apm_vals)) ++ usleep(50000L); ++ ++ if (last_percentage != apm_vals[PERCENTAGE] || last_ac != apm_vals[AC_POWER]) ++ mb_tray_app_repaint (app); + } + + void diff --git a/packages/matchbox-panel/matchbox-panel_0.9.2.bb b/packages/matchbox-panel/matchbox-panel_0.9.2.bb index d0c208cb64..4c037690b6 100644 --- a/packages/matchbox-panel/matchbox-panel_0.9.2.bb +++ b/packages/matchbox-panel/matchbox-panel_0.9.2.bb @@ -1,10 +1,11 @@ include matchbox-panel.inc -PR="r7" +PR="r9" SRC_URI = "http://projects.o-hand.com/matchbox/sources/${PN}/0.9/${PN}-${PV}.tar.gz \ file://add_hostap.patch;patch=1 \ http://handhelds.org/~pb/mb-panel-0.9.2-polling.patch;patch=1 \ http://handhelds.org/~pb/mb-panel-0.9.2-msgcancel.patch;patch=1 \ + file://mb-applet-battery-repaint.patch;patch=1 \ file://system-monitor-crash-fix.patch;patch=1 " |