X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-conf.c;h=fe4f934bd640193e382f1fc077c7ff661f91850b;hb=7a48928f76e0f4599be8f65b1b3bafd03d73a628;hp=02cc2751212a2a0de931fe7a2b9e722b342255e2;hpb=a1bdca71ee6cc049f29447b2302a787e27dca0f3;p=pspp-builds.git diff --git a/src/ui/gui/psppire-conf.c b/src/ui/gui/psppire-conf.c index 02cc2751..fe4f934b 100644 --- a/src/ui/gui/psppire-conf.c +++ b/src/ui/gui/psppire-conf.c @@ -24,6 +24,8 @@ #include #include +#include + #include "psppire-conf.h" static void psppire_conf_init (PsppireConf *conf); @@ -73,8 +75,8 @@ conf_read (PsppireConf *conf) NULL); } -static void -conf_write (PsppireConf *conf) +static gboolean +flush_conf (PsppireConf *conf) { gsize length = 0; @@ -86,8 +88,19 @@ conf_write (PsppireConf *conf) } g_free (kf); + conf->idle = 0; + return FALSE; } +static void +conf_write (PsppireConf *conf) +{ + if ( conf->idle == 0) + conf->idle = g_idle_add_full (G_PRIORITY_LOW, + (GSourceFunc) flush_conf, conf, NULL); +} + + static void psppire_conf_dispose (GObject *object) { @@ -157,6 +170,7 @@ psppire_conf_init (PsppireConf *conf) conf->keyfile = g_key_file_new (); conf->dispose_has_run = FALSE; + conf->idle = 0; }