summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-10-21 21:47:45 +0200
committerjcid <devnull@localhost>2007-10-21 21:47:45 +0200
commit6490b8207de848c39894ca635497a7cd941d68d4 (patch)
tree60d8e1b045d15fd12a5dabe04520a5ec46dadddb
parentbda5a1b01149c9f727c12129d13c8f4d8163b67b (diff)
Disabled double buffering (good for debugging redraws).
-rw-r--r--ChangeLog1
-rw-r--r--src/ui.cc1
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 910c6306..2817a561 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/src/ui.cc b/src/ui.cc
index 60332871..ec10b4fa 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -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;