summaryrefslogtreecommitdiff
path: root/gtk/gtk_plotters.c
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2006-03-23 04:37:53 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2006-03-23 04:37:53 +0000
commit4e48ad2f07f508a18108c56c4411a92a6ca751a8 (patch)
tree79d214a70fb39a0cb8690318fd9618aae1629730 /gtk/gtk_plotters.c
parenteb6d84a1a8d56603874c8d7fca14b153001cc24d (diff)
downloadnetsurf-4e48ad2f07f508a18108c56c4411a92a6ca751a8.tar.gz
netsurf-4e48ad2f07f508a18108c56c4411a92a6ca751a8.tar.bz2
[project @ 2006-03-23 04:37:53 by rjek]
Use higher quality dither in GTK image plotting svn path=/import/netsurf/; revision=2153
Diffstat (limited to 'gtk/gtk_plotters.c')
-rw-r--r--gtk/gtk_plotters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtk_plotters.c b/gtk/gtk_plotters.c
index 8da2d3c51..1169f677a 100644
--- a/gtk/gtk_plotters.c
+++ b/gtk/gtk_plotters.c
@@ -235,7 +235,7 @@ bool nsgtk_plot_bitmap(int x, int y, int width, int height,
0, 0,
x, y,
width, height,
- GDK_RGB_DITHER_NORMAL, 0, 0);
+ GDK_RGB_DITHER_MAX, 0, 0);
} else {
GdkPixbuf *scaled;
@@ -250,7 +250,7 @@ bool nsgtk_plot_bitmap(int x, int y, int width, int height,
0, 0,
x, y,
width, height,
- GDK_RGB_DITHER_NORMAL, 0, 0);
+ GDK_RGB_DITHER_MAX, 0, 0);
g_object_unref(scaled);
}