prevent extra MRU list entries by trimming spaces from script names
(Boeing r1835)
This commit is contained in:
parent
ad93e7f292
commit
2c2c9a082f
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ proc savePrefsFile { } {
|
|||
# helper for most-recently-used file list menu items
|
||||
proc mrufile { f args } {
|
||||
global currentFile
|
||||
set currentFile "$f $args"
|
||||
set currentFile [string trim "$f $args"]
|
||||
openFile
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue