summaryrefslogtreecommitdiff
path: root/amiga/gui.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-03-19 13:00:45 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-03-19 13:00:45 +0000
commite8ca07b0dc481d4065f5a43749116ffdc5c64e0b (patch)
treeb8630a2f9303b38d21f772121eba20decf1e7f3d /amiga/gui.h
parentfff25204093582d906b74ff22d3b62fcaedf67c1 (diff)
downloadnetsurf-e8ca07b0dc481d4065f5a43749116ffdc5c64e0b.tar.gz
netsurf-e8ca07b0dc481d4065f5a43749116ffdc5c64e0b.tar.bz2
Redraw the area under a caret when it is cleared, rather than relying on a potentially
out-of-date off-screen copy of what used to be there. svn path=/trunk/netsurf/; revision=12107
Diffstat (limited to 'amiga/gui.h')
-rwxr-xr-xamiga/gui.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/amiga/gui.h b/amiga/gui.h
index 9f90112e8..c31d2cc1a 100755
--- a/amiga/gui.h
+++ b/amiga/gui.h
@@ -116,9 +116,10 @@ struct gui_window
struct gui_window_2 *shared;
int tab;
struct Node *tab_node;
- int c_x;
- int c_y;
- int c_h;
+ int c_x; /* Caret X posn */
+ int c_y; /* Caret Y posn */
+ int c_w; /* Caret width */
+ int c_h; /* Caret height */
int c_h_temp;
int scrollx;
int scrolly;