Codebase list gnome-control-center / 52ee383
releasing version 1:3.1.3-0ubuntu2 (bzr r233) Rodrigo Moya 12 years ago
3 changed file(s) with 37 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 gnome-control-center (1:3.1.3-0ubuntu2) oneiric; urgency=low
1
2 * debian/patches/04_git_avoid_multiple_dbus_calls.patch:
3 - Avoid making lots of DBus calls to set the brightness when the slider
4 change too quickly (LP: #805473)
5
6 -- Rodrigo Moya <rodrigo.moya@canonical.com> Tue, 05 Jul 2011 16:46:03 +0200
7
08 gnome-control-center (1:3.1.3-0ubuntu1) oneiric; urgency=low
19
210 * New upstream release
0 From 9132f8f2f848ddfb9a9059a64742c179c3181162 Mon Sep 17 00:00:00 2001
1 From: Rodrigo Moya <rodrigo@gnome-db.org>
2 Date: Tue, 5 Jul 2011 16:39:17 +0200
3 Subject: [PATCH] Avoid making lots of DBus calls to set the brightness when
4 the slider changes too quickly
5
6 https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/805473
7 ---
8 panels/screen/cc-screen-panel.c | 3 +++
9 1 files changed, 3 insertions(+), 0 deletions(-)
10
11 diff --git a/panels/screen/cc-screen-panel.c b/panels/screen/cc-screen-panel.c
12 index 75fb7ec..a6cc81f 100644
13 --- a/panels/screen/cc-screen-panel.c
14 +++ b/panels/screen/cc-screen-panel.c
15 @@ -221,6 +221,9 @@ brightness_slider_value_changed_cb (GtkRange *range, gpointer user_data)
16 CcScreenPanelPrivate *priv = CC_SCREEN_PANEL (user_data)->priv;
17
18 /* do not loop */
19 + if (priv->setting_brightness)
20 + return;
21 +
22 priv->setting_brightness = TRUE;
23
24 /* push this to g-p-m */
25 --
26 1.7.5.4
27
11 01_allow_external_panels.patch
22 02_no_assert_on_null_streams.patch
33 03_disable_some_panels.patch
4 04_git_avoid_multiple_dbus_calls.patch
45 #50_ubuntu_systemwide_prefs.patch
56 #51_ubuntu_system_keyboard.patch