rework resource wdw preview mode
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / bcpopup.C
index 7df9f84ed3af5f752f40c22e135034b830b3f1f5..3194264c06be043caa1e9eb8f8f1fadb45c2da5d 100644 (file)
@@ -46,6 +46,12 @@ BC_FullScreen::~BC_FullScreen()
 {
 }
 
+int BC_FullScreen::expose_event()
+{
+       focus();
+       return 1;
+}
+
 
 BC_Popup::BC_Popup(BC_WindowBase *parent_window,
                int x, int y, int w, int h, int bg_color, int hide, BC_Pixmap *bg_pixmap)
@@ -62,6 +68,11 @@ BC_Popup::~BC_Popup()
 {
 }
 
+int BC_Popup::expose_event()
+{
+       focus();
+       return 1;
+}
 
 void BC_Popup::grab_keyboard()
 {