aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-12-01 16:54:33 +0100
committerJoel Bodenmann <joel@unormal.org>2013-12-01 16:54:33 +0100
commit3c3b6967d15fee5414c45408a28475a8bf39c293 (patch)
treeeff911b5e6ecbc53bdf2eff7577495d896a7dece
parentcae7825f73956d2fe43b644dcac81f7883bc14b1 (diff)
downloaduGFX-3c3b6967d15fee5414c45408a28475a8bf39c293.tar.gz
uGFX-3c3b6967d15fee5414c45408a28475a8bf39c293.tar.bz2
uGFX-3c3b6967d15fee5414c45408a28475a8bf39c293.zip
gwinSliderSetPosition() fixed (calls _gwidgetRedraw() instead of gwinRedraw()
-rw-r--r--src/gwin/slider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/slider.c b/src/gwin/slider.c
index 2904785e..5d6a5ec0 100644
--- a/src/gwin/slider.c
+++ b/src/gwin/slider.c
@@ -272,7 +272,7 @@ void gwinSliderSetPosition(GHandle gh, int pos) {
else gsw->pos = pos;
}
ResetDisplayPos(gsw);
- gwinRedraw(gh);
+ _gwidgetRedraw(gh);
#undef gsw
}