summaryrefslogtreecommitdiffstats
path: root/library/ttk
diff options
context:
space:
mode:
authorculler <culler>2019-11-04 20:42:10 (GMT)
committerculler <culler>2019-11-04 20:42:10 (GMT)
commit8f788bba9065216a2ff2c7e9c6d5cbdd2b622b51 (patch)
treee489713644ebbb673530823e40bf7452b2963c8c /library/ttk
parent36766607d76fdb1ffc103c4f6e0f0527a7e840bd (diff)
downloadtk-8f788bba9065216a2ff2c7e9c6d5cbdd2b622b51.zip
tk-8f788bba9065216a2ff2c7e9c6d5cbdd2b622b51.tar.gz
tk-8f788bba9065216a2ff2c7e9c6d5cbdd2b622b51.tar.bz2
Fix a paste error in ttk/entry.tcl that broke the accent menu for ttk::entry widgets.
Diffstat (limited to 'library/ttk')
-rw-r--r--library/ttk/entry.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/ttk/entry.tcl b/library/ttk/entry.tcl
index 0a61ffa..45e3506 100644
--- a/library/ttk/entry.tcl
+++ b/library/ttk/entry.tcl
@@ -160,8 +160,8 @@ bind TEntry <<TkEndIMEMarkedText>> {
bind TEntry <<TkClearIMEMarkedText>> {
%W delete [dict get $::tk::Priv(IMETextMark) "%W"] [%W index insert]
}
-bind Entry <<TkAccentBackspace>> {
- tk::EntryBackspace %W
+bind TEntry <<TkAccentBackspace>> {
+ ttk::entry::Backspace %W
}
### Clipboard procedures.