From ba31530e87eb5d6b7dc0c577fb14bfa74faa2136 Mon Sep 17 00:00:00 2001 From: Stefan Frederik Date: Wed, 17 Mar 2021 00:52:33 +0100 Subject: [PATCH] fix wrong displayed menu accelerator in Properties->View --- src/xschem.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index 0d09c16b..84d12fe9 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -4041,7 +4041,7 @@ if { ( $::OS== "Windows" || [string length [lindex [array get env DISPLAY] 1] ] } .menubar.prop.menu add command -label "Edit" -command "xschem edit_prop" -accelerator Q .menubar.prop.menu add command -label "Edit with editor" -command "xschem edit_vi_prop" -accelerator Shift+Q - .menubar.prop.menu add command -label "View" -command "xschem view_prop" -accelerator Ctrl+Q + .menubar.prop.menu add command -label "View" -command "xschem view_prop" -accelerator Ctrl+Shift+Q .menubar.prop.menu add command -background red -label "Edit file (danger!)" \ -command "xschem edit_file" -accelerator Alt+Q .menubar.sym.menu add radiobutton -label "Show Symbols" -variable hide_symbols -value 0 \