胡斌

fix bug of rotating 180 and 270 degree for PendoTech pen

正在显示 1 个修改的文件 包含 2 行增加2 行删除
... ... @@ -934,10 +934,10 @@
draw_ext_input(y, ext_input_panel_width - x ,nPress);
}
else if(rotate_degree == 180) {
draw_ext_input(x, ext_input_panel_height - y);
draw_ext_input(ext_input_panel_width - x, ext_input_panel_height - y, nPress);
}
else {
draw_ext_input(ext_input_panel_height - y, ext_input_panel_width -x);
draw_ext_input(ext_input_panel_height - y, x, nPress);
}
}
else {
... ...