From e52ba4b64394f677edff329b460868a1712006b4 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 26 Nov 2020 01:02:52 +0300 Subject: [PATCH] ScratchABit: action_goto: Update for picotui 1.1. --- ScratchABit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScratchABit.py b/ScratchABit.py index 7a55610..c6f79f9 100755 --- a/ScratchABit.py +++ b/ScratchABit.py @@ -329,7 +329,7 @@ class DisasmViewer(editor.EditorExt): self.redraw() if res == ACTION_OK: - value = entry.get_text() + value = entry.get() if '0' <= value[0] <= '9': addr = int(value, 0) else: -- 2.11.4.GIT