gsettings tool: stop using GMainLoop

Just iterate directly.
This commit is contained in:
Ryan Lortie 2013-11-27 12:41:33 -05:00
parent f33a7f9ef2
commit 43d19dae11

View File

@ -420,7 +420,8 @@ gsettings_monitor (void)
else
g_signal_connect (global_settings, "changed", G_CALLBACK (value_changed), NULL);
g_main_loop_run (g_main_loop_new (NULL, FALSE));
for (;;)
g_main_context_iteration (NULL, TRUE);
}
static void