[project @ 2004-08-09 06:29:46 by jmb]
Ignore shaded text inputs when finding a place for the caret svn path=/import/netsurf/; revision=1200
This commit is contained in:
parent
c992f6252c
commit
07baa16e05
|
@ -321,6 +321,11 @@ void ro_gui_set_caret_first(wimp_w w) {
|
|||
return;
|
||||
}
|
||||
|
||||
/* Ignore if it's shaded
|
||||
*/
|
||||
if (state.icon.flags & wimp_ICON_SHADED)
|
||||
continue;
|
||||
|
||||
/* Check if it's writable
|
||||
*/
|
||||
button = (state.icon.flags >> wimp_ICON_BUTTON_TYPE_SHIFT) & 0xf;
|
||||
|
|
Loading…
Reference in New Issue