From c256695ca135f50da3288a584ac6fc7d5d819fb1 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 15 Sep 2010 01:14:07 +0000 Subject: [PATCH] Avoiding a race condition for now --- src/plugins/panel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/panel.c b/src/plugins/panel.c index 4ab671b..2ff6889 100644 --- a/src/plugins/panel.c +++ b/src/plugins/panel.c @@ -190,7 +190,9 @@ static void _on_plug_embedded(gpointer data) g_source_remove(panel->timeout); panel->timeout = 0; gtk_widget_show(panel->plug); +#if 0 /* XXX disabled for now because of a race condition */ plugin->helper->queue(plugin->helper->phone, "AT+COPS?"); +#endif } static gboolean _on_battery_timeout(gpointer data)