diff options
author | fvogel <fvogelnew1@free.fr> | 2019-05-08 08:40:09 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2019-05-08 08:40:09 (GMT) |
commit | d843a7eadb157bca482e150f7298e9cf3007c85c (patch) | |
tree | 0f217148397549251bffbcb4b01cb93397fcc107 /library | |
parent | 01461b552198a9b080cf21446514ed0bc061419f (diff) | |
parent | 2fa09ced062e7964597b77f6ec9c04fd00001ee4 (diff) | |
download | tk-d843a7eadb157bca482e150f7298e9cf3007c85c.zip tk-d843a7eadb157bca482e150f7298e9cf3007c85c.tar.gz tk-d843a7eadb157bca482e150f7298e9cf3007c85c.tar.bz2 |
Fix [2513186fff], [f9343d8f72] and [8261c517af]: ttk scrolling (xview/yview commands) is incorrect until idle tasks are run
Diffstat (limited to 'library')
-rw-r--r-- | library/ttk/entry.tcl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/ttk/entry.tcl b/library/ttk/entry.tcl index c123bc9..e9f249c 100644 --- a/library/ttk/entry.tcl +++ b/library/ttk/entry.tcl @@ -211,7 +211,6 @@ proc ttk::entry::ClosestGap {w x} { ## See $index -- Make sure that the character at $index is visible. # proc ttk::entry::See {w {index insert}} { - update idletasks ;# ensure scroll data up-to-date set c [$w index $index] # @@@ OR: check [$w index left] / [$w index right] if {$c < [$w index @0] || $c >= [$w index @[winfo width $w]]} { |