diff options
author | jcid <devnull@localhost> | 2007-10-21 21:47:45 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-10-21 21:47:45 +0200 |
commit | 6490b8207de848c39894ca635497a7cd941d68d4 (patch) | |
tree | 60d8e1b045d15fd12a5dabe04520a5ec46dadddb | |
parent | bda5a1b01149c9f727c12129d13c8f4d8163b67b (diff) |
Disabled double buffering (good for debugging redraws).
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/ui.cc | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -52,6 +52,7 @@ dillo-fltk2 instead of rendering. - Updated configure.in to check only for fltk2-config. - Implemented drag-scrolling with the mouse's middle button. + - Disabled double buffering (good for debugging redraws). Patches: Johannes Hofmann +- Improved FLTK library detection at configure time. Patch: Frank Gevaerts @@ -580,6 +580,7 @@ UI::UI(int win_w, int win_h, const char* label) : { int s_h = 20; resizable(this); + clear_double_buffer(); begin(); TopGroup = this; |