From efa413c4ececd6f1085fc37aeb55f84a2b1b5dec Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sun, 3 Mar 2024 04:23:35 +0100 Subject: [PATCH] rename `Paste selection` in context menu to `Paste clipboard` to avoid confusion --- src/xschem.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index 4c926e40..2d2db961 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -6179,7 +6179,7 @@ proc context_menu { } { button .ctxmenu.b6 -text {Insert text} -padx 3 -pady 0 -anchor w -activebackground grey50 \ -image CtxmenuText -compound left \ -font [subst $font] -command {set retval 6; destroy .ctxmenu} - button .ctxmenu.b8 -text {Paste selection} -padx 3 -pady 0 -anchor w -activebackground grey50 \ + button .ctxmenu.b8 -text {Paste clipboard} -padx 3 -pady 0 -anchor w -activebackground grey50 \ -image CtxmenuPaste -compound left \ -font [subst $font] -command {set retval 8; destroy .ctxmenu} }