diff options
author | Po Lu <luangruo@yahoo.com> | 2021-12-28 14:05:32 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2021-12-28 14:07:49 +0800 |
commit | 208ae993bac6f011f178befbeeb8104c0f63499f (patch) | |
tree | 6eaf957703601d346bac51a2c92a3633a86dee24 /lisp/face-remap.el | |
parent | 036e88ce2f35b805f37e5f3b4948c7d8e7355b2c (diff) | |
download | emacs-208ae993bac6f011f178befbeeb8104c0f63499f.tar.gz emacs-208ae993bac6f011f178befbeeb8104c0f63499f.tar.bz2 emacs-208ae993bac6f011f178befbeeb8104c0f63499f.zip |
Add support for pinch events to NS
* lisp/face-remap.el (text-scale-pinch): Remove mistaken
assumption that angle is always 1.0 at the beginning of
a sequence.
* src/nsterm.c (- magnifyWithEvent): New function.
Diffstat (limited to 'lisp/face-remap.el')
-rw-r--r-- | lisp/face-remap.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/face-remap.el b/lisp/face-remap.el index 67123ac7f82..3440f4c9416 100644 --- a/lisp/face-remap.el +++ b/lisp/face-remap.el @@ -417,8 +417,7 @@ a top-level keymap, `text-scale-increase' or (with-selected-window window (when (and (zerop dx) (zerop dy) - (zerop angle) - (equal scale 1.0)) + (zerop angle)) (setq text-scale--pinch-start-scale (if text-scale-mode text-scale-mode-amount 0))) (text-scale-set |