File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5050- ID and class validation was too lenient https://github.com/Textualize/textual/issues/3954
5151- Fixed CSS watcher crash if file becomes unreadable (even temporarily) https://github.com/Textualize/textual/pull/4079
5252- Fixed display of keys when used in conjunction with other keys https://github.com/Textualize/textual/pull/3050
53+ - Fixed double detection of <kbd >Escape</kbd > on Windows https://github.com/Textualize/textual/issues/4038
5354
5455## [ 0.47.1] - 2023-01-05
5556
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ def run(self) -> None:
264264 # Key event, store unicode char in keys list
265265 key_event = input_record .Event .KeyEvent
266266 key = key_event .uChar .UnicodeChar
267- if key_event .bKeyDown or key == " \x1b " :
267+ if key_event .bKeyDown :
268268 if (
269269 key_event .dwControlKeyState
270270 and key_event .wVirtualKeyCode == 0
You can’t perform that action at this time.
0 commit comments