prevent extra MRU list entries by trimming spaces from script names

(Boeing r1835)
This commit is contained in:
ahrenholz@gmail.com 2014-04-03 21:50:51 +00:00
parent 30dd51c3ab
commit 62d668581e

View file

@ -467,7 +467,7 @@ proc savePrefsFile { } {
# helper for most-recently-used file list menu items # helper for most-recently-used file list menu items
proc mrufile { f args } { proc mrufile { f args } {
global currentFile global currentFile
set currentFile "$f $args" set currentFile [string trim "$f $args"]
openFile openFile
} }