Corrected a long-standing error in which ending text with a literal
[xcircuit.git] / lib / tcl / selection.tcl
blob8acc29fc2c95698c3aaad5d93cd095fa46d34372
1 # selection.tcl --- rebinds middle mouse button in text mode
2 # to implement a clipboard paste.
4 xcircuit::keybind <Button-2> { if {[eventmode] == "text" || \
5 [eventmode] == "etext"} {label insert text "[selection get]"} else { \
6 standardaction %b down %s}}