From 2c57363efc343ae521857cddbcfbcaec50eaedab Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 30 Apr 2014 21:11:54 +0200 Subject: slider does not change position if disabled --- src/gwin/slider.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gwin') diff --git a/src/gwin/slider.c b/src/gwin/slider.c index 4c91ede6..ace90365 100644 --- a/src/gwin/slider.c +++ b/src/gwin/slider.c @@ -262,6 +262,10 @@ void gwinSliderSetPosition(GHandle gh, int pos) { if (gh->vmt != (gwinVMT *)&sliderVMT) return; + // do not change the position if disabled + if (!gwinGetEnabled(gh)) + return; + if (gsw->min <= gsw->max) { if (pos < gsw->min) gsw->pos = gsw->min; else if (pos > gsw->max) gsw->pos = gsw->max; -- cgit v1.2.3