Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/78e956607f2ca6c592c5f76865441cab57da7860
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/78e956607f2ca6c592c5f76865441cab57da7860
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/78e956607f2ca6c592c5f76865441cab57da7860

The branch, master has been updated
       via  78e956607f2ca6c592c5f76865441cab57da7860 (commit)
      from  4e756f6088bce4cd634702d02ccdae5389392a17 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commitdiff/78e956607f2ca6c592c5f76865441cab57da7860
commit 78e956607f2ca6c592c5f76865441cab57da7860
Author: Chris Young <ch...@unsatisfactorysoftware.co.uk>
Commit: Chris Young <ch...@unsatisfactorysoftware.co.uk>

    Don't busy the pointer when removing the caret - it's pointless and flickery

diff --git a/amiga/gui.c b/amiga/gui.c
index 9966073..08408b0 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -4333,7 +4333,7 @@ void gui_window_remove_caret(struct gui_window *g)
        if((nsoption_bool(kiosk_mode) == false))
                OffMenu(g->shared->win, AMI_MENU_PASTE);
 
-       ami_do_redraw_limits(g, g->shared->bw, true, g->c_x, g->c_y,
+       ami_do_redraw_limits(g, g->shared->bw, false, g->c_x, g->c_y,
                g->c_x + g->c_w + 1, g->c_y + g->c_h + 1);
 
        g->c_h = 0;


-----------------------------------------------------------------------

Summary of changes:
 amiga/gui.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/amiga/gui.c b/amiga/gui.c
index 9966073..08408b0 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -4333,7 +4333,7 @@ void gui_window_remove_caret(struct gui_window *g)
        if((nsoption_bool(kiosk_mode) == false))
                OffMenu(g->shared->win, AMI_MENU_PASTE);
 
-       ami_do_redraw_limits(g, g->shared->bw, true, g->c_x, g->c_y,
+       ami_do_redraw_limits(g, g->shared->bw, false, g->c_x, g->c_y,
                g->c_x + g->c_w + 1, g->c_y + g->c_h + 1);
 
        g->c_h = 0;


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
netsurf-commits@netsurf-browser.org
http://vlists.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to