ecere/gui/Window; EDA/ERS: New 'noConsequential' property to address performance...
[sdk] / eda / libeda / src / ers.ec
index c5a513d..8f63484 100644 (file)
@@ -36,7 +36,7 @@ static define dpi = 100;
 class PreviewPage : Window
 {
    background = dimGray;
-
+   noConsequential = true;
    public property Page page
    {
       set
@@ -111,7 +111,7 @@ public:
       get { return report; }
    }
 
-   Window inside { this };
+   Window inside { this, noConsequential = true };
 
    int headerHeight;
 
@@ -956,5 +956,8 @@ public:
    bool isLast;
    int level;
 
+   creationActivation = doNothing;
+   noConsequential = true;
+
    subclass(Detail) rowDetail;
 }