]> git.eshelyaron.com Git - emacs.git/commitdiff
Make last change compile
authorPo Lu <luangruo@yahoo.com>
Sat, 1 Jan 2022 10:29:44 +0000 (10:29 +0000)
committerPo Lu <luangruo@yahoo.com>
Sat, 1 Jan 2022 10:29:44 +0000 (10:29 +0000)
* src/haiku_support.cc (EmacsShow): Fix last change.
(TearDownDoubleBuffering): Likewise.
(Draw): Draw normally if not double buffered even if shown_flag
is true.

src/haiku_support.cc

index e1aaf8356893319415ed57d0f39771d84da0a617..b89a08663a481ba86768e3dd59628551532cfd54 100644 (file)
@@ -739,7 +739,7 @@ public:
        was_shown_p = true;
       }
 
-    if (this->parent && offscreen_draw_view)
+    if (this->parent)
       shown_flag = 1;
     Show ();
     if (this->parent)
@@ -994,8 +994,6 @@ public:
        offscreen_draw_view = NULL;
        delete offscreen_draw_bitmap_1;
        offscreen_draw_bitmap_1 = NULL;
-
-       shown_flag = 0;
       }
    }
 
@@ -1058,7 +1056,7 @@ public:
        return;
       }
 
-    if (w->shown_flag)
+    if (w->shown_flag && offscreen_draw_view)
       {
        PushState ();
        SetDrawingMode (B_OP_ERASE);