Fix bug saving window positions
[pspp] / 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;
     };
+
 }