summaryrefslogtreecommitdiffstats
path: root/library/xmfbox.tcl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-04 12:47:52 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-04 12:47:52 (GMT)
commit0ecec61e98d40fc515cde1d99e1604b9f419ad11 (patch)
treeea85747b2b6c45fb8858f174e03e2d4e9da8c1b4 /library/xmfbox.tcl
parent1248bb70a754303d9f7f6ac70dac7a04bbd879e4 (diff)
downloadtk-0ecec61e98d40fc515cde1d99e1604b9f419ad11.zip
tk-0ecec61e98d40fc515cde1d99e1604b9f419ad11.tar.gz
tk-0ecec61e98d40fc515cde1d99e1604b9f419ad11.tar.bz2
Suggested fix for [3613759]: ttk::entry and symbolic index namesbug_3613759
Diffstat (limited to 'library/xmfbox.tcl')
-rw-r--r--library/xmfbox.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl
index 0578361..e9ada86 100644
--- a/library/xmfbox.tcl
+++ b/library/xmfbox.tcl
@@ -739,7 +739,7 @@ proc ::tk::MotifFDialog_BrowseFList {w} {
$data(fEnt) delete 0 end
$data(fEnt) insert 0 [::tk::dialog::file::JoinFile $data(selectPath) \
$data(filter)]
- $data(fEnt) xview end
+ $data(fEnt) xview moveto 1.0
# if it's a multiple selection box, just put in the filenames
# otherwise put in the full path as usual
@@ -750,7 +750,7 @@ proc ::tk::MotifFDialog_BrowseFList {w} {
$data(sEnt) insert 0 [::tk::dialog::file::JoinFile $data(selectPath) \
[lindex $data(selectFile) 0]]
}
- $data(sEnt) xview end
+ $data(sEnt) xview moveto 1.0
}
# ::tk::MotifFDialog_ActivateFList --