fix popup menu not appearing when nothing was typed

dbus-notify
Zlatin Balevsky 2022-07-27 23:21:55 +01:00
parent 4e22d10d7c
commit bc5a977669
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ class ChatEntryPane extends JTextPane {
void keyTyped(KeyEvent e) {
if (e.getKeyChar() == AT) {
lastPoint = getCaret().getMagicCaretPosition()
if (lastPoint == null)
lastPoint = getBounds().getLocation()
lastComponent = e.getComponent()
if (lastPoint == null || lastComponent == null)
return