Fix for [#23286] Text Editor: Cursor not changing shape when insert key is pressed. Patch by Justin Dailey (dail)

This commit is contained in:
Dalai Felinto 2010-08-12 20:42:06 +00:00
parent 76e1773548
commit 6317a0006b

@ -1709,6 +1709,8 @@ static int toggle_overwrite_exec(bContext *C, wmOperator *op)
st->overwrite= !st->overwrite;
WM_event_add_notifier(C, NC_TEXT|ND_CURSOR, st->text);
return OPERATOR_FINISHED;
}