From d4a3374b77d37368a57c724434ccf09f9d09661d Mon Sep 17 00:00:00 2001 From: Eugenio Parodi Date: Mon, 21 Aug 2023 17:46:19 +0100 Subject: [PATCH] added keypressview in the workbench --- multiplexers/workbench/main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/multiplexers/workbench/main.py b/multiplexers/workbench/main.py index e40ecabc..ede9b2ee 100755 --- a/multiplexers/workbench/main.py +++ b/multiplexers/workbench/main.py @@ -88,5 +88,10 @@ win1 = WBWindow(parent=wb, pos=(10,5), size=(60,20), term1 = ttk.TTkTerminal(parent=win1) term1.runShell() +wink = WBWindow(parent=wb, pos=(10,30), size=(70,6), + wbbg=bgBLACK+fgWHITE, + title="Terminallo n.1",layout=ttk.TTkVBoxLayout()) +ttk.TTkKeyPressView(parent=wink) + root.mainloop() \ No newline at end of file