mirror of
https://github.com/fltk/fltk.git
synced 2026-06-06 16:46:52 +08:00
Does not call draw() on child Fl_Windows when their parent is hidden.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@793 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
//
|
//
|
||||||
// "$Id: Fl.cxx,v 1.24.2.12 1999/08/22 23:31:21 gustavo Exp $"
|
// "$Id: Fl.cxx,v 1.24.2.13 1999/10/23 06:19:59 bill Exp $"
|
||||||
//
|
//
|
||||||
// Main event handling code for the Fast Light Tool Kit (FLTK).
|
// Main event handling code for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -131,7 +131,7 @@ void Fl::flush() {
|
|||||||
if (damage()) {
|
if (damage()) {
|
||||||
damage_ = 0;
|
damage_ = 0;
|
||||||
for (Fl_X* x = Fl_X::first; x; x = x->next) {
|
for (Fl_X* x = Fl_X::first; x; x = x->next) {
|
||||||
if (x->w->damage() && x->w->visible()) {
|
if (x->w->damage() && x->w->visible_r()) {
|
||||||
if (x->wait_for_expose) {
|
if (x->wait_for_expose) {
|
||||||
// leave Fl::damage() set so programs can tell damage still exists
|
// leave Fl::damage() set so programs can tell damage still exists
|
||||||
damage_ = 1;
|
damage_ = 1;
|
||||||
@@ -700,5 +700,5 @@ int fl_old_shortcut(const char* s) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl.cxx,v 1.24.2.12 1999/08/22 23:31:21 gustavo Exp $".
|
// End of "$Id: Fl.cxx,v 1.24.2.13 1999/10/23 06:19:59 bill Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user