Problem: GUI: after prompting for a number the mouse shape is sometimes
wrong.
Solution: Call setmouse() after setting "State". (Hirohito Higashi,
closes #2709)
cmdline_row = 0;
save_State = State;
State = ASKMORE; /* prevents a screen update when using a timer */
+#ifdef FEAT_MOUSE
+ /* May show different mouse shape. */
+ setmouse();
+#endif
+
i = get_number(TRUE, mouse_used);
if (KeyTyped)
else
cmdline_row = save_cmdline_row;
State = save_State;
+#ifdef FEAT_MOUSE
+ /* May need to restore mouse shape. */
+ setmouse();
+#endif
return i;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1756,
/**/
1755,
/**/