Compare commits

...

2 Commits

Author SHA1 Message Date
Rico Tiongson
cd4aa0a49d Defer patch to GESTURE_SWIPE_UPDATE regex pattern instead of modifying GESTURE_SWIPE_BEGIN 2019-05-02 10:25:42 +08:00
Rico Tiongson
43fe2bb9b3 Patch missing GESTURE_SWIPE_BEGIN for Microsoft Surface Pro
Touchpad for Microsoft Surface Pro doesn't show GESTURE_SWIPE_BEGIN
in comfortable-swipe debug due to unresolved bug from libinput.
This fix temporarily patches that issue by adding UPDATE pattern to
the gesture begin regex.
2019-05-01 19:01:23 +08:00
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
v1.0.3 v1.0.4

View File

@ -177,7 +177,8 @@ namespace comfortable_swipe::gesture
else else
{ {
// not swiping, check if swipe will begin // not swiping, check if swipe will begin
if (std::regex_match(line, matches, gesture_swipe_begin) != 0) if (std::regex_match(line, matches, gesture_swipe_begin) != 0
|| std::regex_match(line, matches, gesture_swipe_update) != 0)
{ {
// assign necessary variables for swipe begin // assign necessary variables for swipe begin
this->flag_swiping = true; this->flag_swiping = true;