diff options
author | culler <culler> | 2019-10-24 03:57:43 (GMT) |
---|---|---|
committer | culler <culler> | 2019-10-24 03:57:43 (GMT) |
commit | b88700de5981455ad9071568ce05d1706143b269 (patch) | |
tree | a024b7f33b592b56300f3204f43f64918381062c | |
parent | f42842d83e17bea792315d12d4f6a169d46274ad (diff) | |
download | tk-b88700de5981455ad9071568ce05d1706143b269.zip tk-b88700de5981455ad9071568ce05d1706143b269.tar.gz tk-b88700de5981455ad9071568ce05d1706143b269.tar.bz2 |
Remove the calls to update idletasks which were not needed.
-rw-r--r-- | library/text.tcl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/text.tcl b/library/text.tcl index 0530cf5..24f8428 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -399,11 +399,9 @@ bind Text <<TkStartIMEMarkedText>> { bind Text <<TkEndIMEMarkedText>> { %W tag add IMEmarkedtext [dict get $::tk::Priv(IMETextMark) "%W"] insert %W tag configure IMEmarkedtext -underline on - update idletasks } bind Text <<TkClearIMEMarkedText>> { %W delete IMEmarkedtext.first IMEmarkedtext.last - update idletasks } # Macintosh only bindings: |