rename `Paste selection` in context menu to `Paste clipboard` to avoid confusion

This commit is contained in:
stefan schippers 2024-03-03 04:23:35 +01:00
parent 55ac6bb396
commit efa413c4ec
1 changed files with 1 additions and 1 deletions

View File

@ -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}
}