diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-17 11:15:00 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-17 11:15:00 +0000 |
commit | 1a50894fa430b11105e2051334d41ac2ab705355 (patch) | |
tree | c2f2f473049f18553d6b6ac34344c3cc88bd4c1b /src/sound-service-dbus.c | |
parent | a33c5276c9f07d54af523406445070bef6edf256 (diff) | |
parent | 34483439f5254a35daf6dbd47b959936edc499e1 (diff) | |
download | ayatana-indicator-sound-1a50894fa430b11105e2051334d41ac2ab705355.tar.gz ayatana-indicator-sound-1a50894fa430b11105e2051334d41ac2ab705355.tar.bz2 ayatana-indicator-sound-1a50894fa430b11105e2051334d41ac2ab705355.zip |
merge with ui work - fixed start up regression - keyboard ui implemented - volume control much smoother
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r-- | src/sound-service-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c index a4c6eda..99a9d34 100644 --- a/src/sound-service-dbus.c +++ b/src/sound-service-dbus.c @@ -194,7 +194,7 @@ void sound_service_dbus_sink_input_while_muted(SoundServiceDbus* obj, gboolean void sound_service_dbus_update_sink_volume(SoundServiceDbus* obj, gdouble sink_volume) { SoundServiceDbusPrivate *priv = SOUND_SERVICE_DBUS_GET_PRIVATE (obj); - priv->volume_percent = sink_volume * 100; + priv->volume_percent = sink_volume; g_debug("Emitting signal: SINK_VOLUME_UPDATE, with sink_volme %f", priv->volume_percent); g_signal_emit(obj, |