Skip to content

Commit

Permalink
智绘教20231106a
Browse files Browse the repository at this point in the history
+ 新增程序启动会自动在桌面创建快捷方式
= 优化代码逻辑,大幅度提高了书写流畅度
= 优化PPT界面切换时响应速度
= 优化智能橡皮粗细,符合一体机操作习惯
= 优化了智能绘图的代码,提示响应速度
= 修改放大API工作方式,减少内存和CPU占用
- 修复了在有未完成绘制任务时点击撤回导致崩溃的情况
- 修复了PPT界面穿透离开后,未监测到PPT已结束放映的问题
? 修复了多处小BUG,提升体验
  • Loading branch information
Alan-CRL committed Nov 6, 2023
1 parent fb26e79 commit e51727b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 智绘教/IdtRts.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

extern int uRealTimeStylus;

extern bool touchDown; // 表示触摸设备是否被按下
extern int touchNum; // 触摸点的点击个数
extern unordered_map<LONG, pair<int, int>> PreviousPointPosition; //用于速度计算
extern bool touchDown; // 表示触摸设备是否被按下
extern int touchNum; // 触摸点的点击个数
extern unordered_map<LONG, pair<int, int>> PreviousPointPosition; // 用于速度计算

struct TouchMode
{
Expand Down

1 comment on commit e51727b

@Alan-CRL
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

实际上有许多修改在这里没有显示,因为操作失误,我后续就只能使用强推。

Please sign in to comment.