atbswp icon indicating copy to clipboard operation
atbswp copied to clipboard

keydown doesn't work with spanish "ñ". Possible solution in Win10

Open leomm20 opened this issue 1 year ago • 0 comments

Checklist

  • [ ] I use the latest release of atbswp
  • [ ] The issue is not existing yet

Verbose log

PASTE VERBOSE LOG HERE

Miscellaneous information

Operating System

Windows 10

Desktop Environment/Window Manager

Write here

Python version

3.11

Description

KeyDown doesn't work with spanish "ñ" (it doesn't break, but doesn't print anything). Possible solution in Windows 10 at least:

In HEADER, add: f"# -- coding: ISO-8859-1 --\n" f"import pyperclip\n"

in on_press add:

if key.char == 'ñ':
                self._capture.append("pyperclip.copy('ñ')")
                self._capture.append("pyautogui.hotkey('ctrl', 'v')")
elif key.char == 'Ñ':
                self._capture.append("pyperclip.copy('Ñ')")
                self._capture.append("pyautogui.hotkey('ctrl', 'v')") 

leomm20 avatar Jun 15 '23 14:06 leomm20