(svn r9064) -Fix [FS#663]: don't keep on scrolling for non-numeric values in settings, but require reclick

This commit is contained in:
truelight 2007-03-08 12:57:08 +00:00
parent 194f51eea4
commit 70623e3488
1 changed files with 2 additions and 2 deletions

View File

@ -827,8 +827,8 @@ static void PatchesSelectionWndProc(Window *w, WindowEvent *e)
if (value < sdb->min) value = (sdb->flags & SGF_0ISDISABLED) ? 0 : sdb->min;
}
/* Set up scroller timeout */
if (value != oldvalue) {
/* Set up scroller timeout for numeric values */
if (value != oldvalue && !(sd->desc.flags & SGF_MULTISTRING)) {
WP(w,def_d).data_2 = btn * 2 + 1 + ((x >= 10) ? 1 : 0);
w->flags4 |= 5 << WF_TIMEOUT_SHL;
_left_button_clicked = false;