diff options
| author | Manolo Gouy <Manolo> | 2016-02-19 12:47:45 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-02-19 12:47:45 +0000 |
| commit | 2b6482263b029b690abc972af765c3218572dcd4 (patch) | |
| tree | 5f988a3e02c28ecfcfc333a2b3ec7d7b3355364b /src/drivers | |
| parent | 1b5e231c902ab198c577989db44946797ebd4893 (diff) | |
Fix Fl_X11_Screen_Driver::wait(). The fractals demo is back.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11192 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/drivers')
| -rw-r--r-- | src/drivers/X11/Fl_X11_Screen_Driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/X11/Fl_X11_Screen_Driver.cxx b/src/drivers/X11/Fl_X11_Screen_Driver.cxx index fad32ee43..9afe4dda3 100644 --- a/src/drivers/X11/Fl_X11_Screen_Driver.cxx +++ b/src/drivers/X11/Fl_X11_Screen_Driver.cxx @@ -398,7 +398,7 @@ double Fl_X11_Screen_Driver::wait(double time_to_wait) if (time_to_wait <= 0.0) { // do flush second so that the results of events are visible: int ret = fl_wait(0.0); - flush(); + Fl::flush(); return ret; } else { // do flush first so that user sees the display: |
