Speed up rendering of columns in sheet.
[pspp] / src / ui / gui / pspp-sheet-private.h
index 1b11506184c82593f3cb1b85ffeb1843e813d392..a19c7c5b783bf60bef8916a8616be49a091e86c8 100644 (file)
@@ -274,8 +274,16 @@ struct _PsppSheetViewPrivate
   guint post_validation_flag : 1;
 
   /* Whether our key press handler is to avoid sending an unhandled binding to the search entry */
+
   guint search_entry_avoid_unhandled_binding : 1;
-};
+  /* GtkScrollablePolicy needs to be checked when
+   * driving the scrollable adjustment values */
+  guint hscroll_policy : 1;
+  guint vscroll_policy : 1;
+
+  /* For optimisation of size allocate requests */
+  guint resized : 1;
+ };
 
 #ifdef __GNUC__