fix slide view clip bug issue #105

This commit is contained in:
xianjimli 2019-04-02 10:08:13 +08:00
parent 33726abde1
commit 92a1cc9ff9
2 changed files with 1 additions and 2 deletions

View File

@ -3,6 +3,7 @@
* 修改窗口动画内存溢出问题(感谢陈谭提供补丁)。
* 修改windows平台编译问题(感谢陈谭提供补丁)。
* 软键盘支持tab键。
* 修改slideview clip的BUG(issue #105)。
* 2019/04/01
* 从win获取locale info。

View File

@ -46,8 +46,6 @@ static ret_t canvas_set_clip_rect_with_offset(canvas_t* c, rect_t* r, int32_t ox
rr.x += ox;
rr.y += oy;
rr.w -= 1;
rr.h -= 1;
return canvas_set_clip_rect(c, &rr);
}