From 4f09b084327eb24616ca64be61cc9caa4e881c1a Mon Sep 17 00:00:00 2001 From: Bradford Hovinen Date: Thu, 12 Jul 2001 21:40:03 +0000 Subject: [PATCH] Disable launch of esd, due to esd's general suckiness 2001-07-12 Bradford Hovinen * sound-properties-capplet.c (apply_settings): Disable launch of esd, due to esd's general suckiness --- capplets/sound/ChangeLog | 3 +++ capplets/sound/sound-properties-capplet.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/capplets/sound/ChangeLog b/capplets/sound/ChangeLog index e3f81d9c6..17d388d26 100644 --- a/capplets/sound/ChangeLog +++ b/capplets/sound/ChangeLog @@ -1,5 +1,8 @@ 2001-07-12 Bradford Hovinen + * sound-properties-capplet.c (apply_settings): Disable launch of + esd, due to esd's general suckiness + * sound-properties.xml: Update to use correct names for settings * sound-properties-capplet.c (set_moniker_cb): Change event_sound diff --git a/capplets/sound/sound-properties-capplet.c b/capplets/sound/sound-properties-capplet.c index cd49c395b..40661a2f1 100644 --- a/capplets/sound/sound-properties-capplet.c +++ b/capplets/sound/sound-properties-capplet.c @@ -94,8 +94,10 @@ apply_settings (Bonobo_ConfigDatabase db) enable_esd = bonobo_config_get_boolean (db, "/main/enable_esd", NULL); +#if 0 if (enable_esd && gnome_sound_connection < 0) start_esd (); +#endif if (!enable_esd && gnome_sound_connection >= 0) system ("killall esd");