diff options
author | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2011-03-19 13:00:45 +0000 |
---|---|---|
committer | Chris Young <chris@unsatisfactorysoftware.co.uk> | 2011-03-19 13:00:45 +0000 |
commit | e8ca07b0dc481d4065f5a43749116ffdc5c64e0b (patch) | |
tree | b8630a2f9303b38d21f772121eba20decf1e7f3d /amiga/gui.h | |
parent | fff25204093582d906b74ff22d3b62fcaedf67c1 (diff) | |
download | netsurf-e8ca07b0dc481d4065f5a43749116ffdc5c64e0b.tar.gz |
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-x | amiga/gui.h | 7 |
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; |