Fix bug saving window positions
authorJohn Darrington <john@darrington.wattle.id.au>
Tue, 17 Mar 2009 12:13:26 +0000 (21:13 +0900)
committerJohn Darrington <john@darrington.wattle.id.au>
Tue, 17 Mar 2009 12:13:26 +0000 (21:13 +0900)
src/ui/gui/psppire-conf.c

index fae56f46de2806461ad55018664592ce870d76c3..4090b74c3ea9dce414e42cb59bb643c6c312a15e 100644 (file)
@@ -274,9 +274,6 @@ psppire_conf_save_window_geometry (PsppireConf *conf,
             GDK_WINDOW_STATE_MAXIMIZED )
          return;
 
-       if ( event->send_event )
-         return;
-
        psppire_conf_set_int (conf, base, "height", event->height);
        psppire_conf_set_int (conf, base, "width", event->width);
 
@@ -296,4 +293,5 @@ psppire_conf_save_window_geometry (PsppireConf *conf,
     default:
       break;
     };
+
 }