Hi Paul

On Tue, 11 Aug 2009 12:11:47 +0200, Pawe³ Blokus wrote:

> This is the most recent status of the Amiga scroll crash. After the
> most recent changes the browser line changed to 2551. It looks like
> current_redraw_browser isn't set properly while
> browser_scroll_callback is connected in html_redraw.

I've delved into the code (briefly) and found a fix - attached.

There may still be a problem if the knockout option in the plotters is
set as false (I've changed mine back to true), as this fix will only
affect knockout plotters.

Still don't know why it is only me seeing this though.

Regards
Chris
Index: scroll.c
===================================================================
--- scroll.c    (revision 9198)
+++ scroll.c    (working copy)
@@ -216,6 +216,10 @@
        int well_length, bar_off, bar_c0, bar_c1;
        int v[6]; /* array of triangle vertices */
        int x0, y0, x1, y1;
+
+       if (plot.option_knockout)
+               knockout_plot_start(&plot);
+
        plot_style_t pstyle_css_scrollbar_bg_colour = {
                .fill_type = PLOT_OP_TYPE_SOLID,
                .fill_colour = css_scrollbar_bg_colour,

Reply via email to