Ignore pinch and mouse wheel events that mess with font size

This commit is contained in:
Tobias Ostner 2024-08-06 10:28:07 +02:00
parent 77460b7c30
commit 5b6e939ddc

View file

@ -160,6 +160,10 @@
(use-package emacs (use-package emacs
:ensure nil :ensure nil
:demand t
:bind (("<C-wheel-up>" . ignore)
("<C-wheel-down>" . ignore)
("<pinch>" . ignore))
:custom :custom
(cursor-type 'bar) (cursor-type 'bar)
(visible-bell t) (visible-bell t)