gwinSliderSetPosition() fixed (calls _gwidgetRedraw() instead of gwinRedraw()

ugfx_release_2.6
Joel Bodenmann 2013-12-01 16:54:33 +01:00
parent cae7825f73
commit 3c3b6967d1
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ void gwinSliderSetPosition(GHandle gh, int pos) {
else gsw->pos = pos;
}
ResetDisplayPos(gsw);
gwinRedraw(gh);
_gwidgetRedraw(gh);
#undef gsw
}