diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2025-04-19 07:30:10 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2025-04-19 07:30:10 +0200 |
| commit | 50a3fbf1d4e6a39c618a86d931bee9584306a8dd (patch) | |
| tree | f6358ab06a26b3fecb3e442a757942edcdd129f0 /corfu.el | |
| parent | 260f514a62dc5624cfa926f0e9f3ab53fffabd70 (diff) | |
Avoid popup jumping at the end of line (See #570)
Diffstat (limited to 'corfu.el')
| -rw-r--r-- | corfu.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1034,7 +1034,7 @@ Auto completion is only performed if the tick did not change." WIDTH is the width of the popup. The current candidate CURR is highlighted. A scroll bar is displayed from LO to LO+BAR." - (let ((lh (cdr (posn-object-width-height pos)))) + (let ((lh (max (default-line-height) (cdr (posn-object-width-height pos))))) (with-current-buffer (corfu--make-buffer " *corfu*") (let* ((ch (default-line-height)) (cw (default-font-width)) |
