all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Po Lu via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Konrad Podczeck <konrad.podczeck@univie.ac.at>
Cc: 55299@debbugs.gnu.org
Subject: bug#55299: 29.0.50; Bug with the mode-line and pixel-scroll-precision-mode
Date: Sat, 07 May 2022 18:26:56 +0800	[thread overview]
Message-ID: <87czgp7i4v.fsf@yahoo.com> (raw)
In-Reply-To: <7E7762D2-E79D-4BD3-B45B-294F3052AF36@univie.ac.at> (Konrad Podczeck's message of "Sat, 7 May 2022 11:54:16 +0200")

[Please use X-Debbugs-CC when copying people into bug reports.]

Konrad Podczeck <konrad.podczeck@univie.ac.at> writes:

> Make an init file just containing the lines:
>
> (pixel-scroll-precision-mode)
> (setq-default mode-line-format nil)
>  
> Open the app, and any file. Do C-x 2. If I scroll upwards in the
> inactive pane, using the mouse wheel, then pixel-scroll-precision-mode
> does not work.


I cannot reproduce this on GNU/Linux, but it sounds similar to a problem
others have reported on macOS that I could never reproduce.

This is not the final fix, but please see if the following code fixes
your problem:

diff --git a/lisp/pixel-scroll.el b/lisp/pixel-scroll.el
index b0fe2f56c0..a7cfda2491 100644
--- a/lisp/pixel-scroll.el
+++ b/lisp/pixel-scroll.el
@@ -685,6 +685,8 @@ pixel-scroll-precision
       (setq window (frame-selected-window window)))
     (if (and (nth 4 event))
         (let ((delta (round (cdr (nth 4 event)))))
+          (when (< delta 1.0)
+            (setq delta 1.0))
           (unless (zerop delta)
             (if (> (abs delta) (window-text-height window t))
                 (mwheel-scroll event nil)





  reply	other threads:[~2022-05-07 10:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-07  9:54 bug#55299: 29.0.50; Bug with the mode-line and pixel-scroll-precision-mode Konrad Podczeck
2022-05-07 10:26 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2022-05-07 11:14   ` Konrad Podczeck
2022-05-07 11:54     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-07 13:06       ` Konrad Podczeck
2022-05-07 13:21         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-07 14:40           ` Konrad Podczeck
2022-05-08  0:40             ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-08  1:01             ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-08  5:34               ` Eli Zaretskii
2022-05-08  5:55                 ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-08  6:13                   ` Eli Zaretskii
2022-05-08  7:06                     ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-08 10:01                       ` Konrad Podczeck
2022-05-08 11:02                         ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-05-19 12:50 ` Konrad Podczeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87czgp7i4v.fsf@yahoo.com \
    --to=bug-gnu-emacs@gnu.org \
    --cc=55299@debbugs.gnu.org \
    --cc=konrad.podczeck@univie.ac.at \
    --cc=luangruo@yahoo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.