aboutsummaryrefslogtreecommitdiff
path: root/95/index.md
blob: c14144e5c0296d44f3453bd7e7f3bd5c5f6828cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Title: Consider making Dillo double-buffered by default
Author: rodarima
Created: Sat, 09 Mar 2024 11:20:14 +0000
State: open

The option `buffered_drawing` is by default set to 1, which results in single-buffered windows:

```
# Change the buffering scheme for drawing
# 0 no double buffering - useful for debugging
# 1 light buffering using a single back buffer for all windows
# 2 full fltk-based double buffering for all windows
#buffered_drawing=1
```

We may want to move the default to double buffering if there are no further issues, so we remove the artifacts on resizing the Dillo window.