prevent extra MRU list entries by trimming spaces from script names

(Boeing r1835)
This commit is contained in:
ahrenholz 2014-04-03 21:50:51 +00:00
parent ad93e7f292
commit 2c2c9a082f

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
} }