diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-12-01 16:51:48 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-12-01 16:51:48 +0100 |
commit | cae7825f73956d2fe43b644dcac81f7883bc14b1 (patch) | |
tree | 0a5c553cfceabf1b6e839ec39a7cc8f2f551a0b6 /src/gwin | |
parent | 122ff8f91140c45677b0297db83630781813d39f (diff) | |
download | uGFX-cae7825f73956d2fe43b644dcac81f7883bc14b1.tar.gz uGFX-cae7825f73956d2fe43b644dcac81f7883bc14b1.tar.bz2 uGFX-cae7825f73956d2fe43b644dcac81f7883bc14b1.zip |
gwinSliderSetPosition() automatically redraws the widget
Diffstat (limited to 'src/gwin')
-rw-r--r-- | src/gwin/slider.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gwin/slider.c b/src/gwin/slider.c index a4ac5d95..2904785e 100644 --- a/src/gwin/slider.c +++ b/src/gwin/slider.c @@ -272,6 +272,8 @@ void gwinSliderSetPosition(GHandle gh, int pos) { else gsw->pos = pos; } ResetDisplayPos(gsw); + gwinRedraw(gh); + #undef gsw } |