aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;