From 62d668581e6092cfeeca24404a31db8cae7ec22f Mon Sep 17 00:00:00 2001 From: "ahrenholz@gmail.com" Date: Thu, 3 Apr 2014 21:50:51 +0000 Subject: [PATCH] prevent extra MRU list entries by trimming spaces from script names (Boeing r1835) --- trunk/gui/filemgmt.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/gui/filemgmt.tcl b/trunk/gui/filemgmt.tcl index 9cf7c2f1..b1db54ae 100755 --- a/trunk/gui/filemgmt.tcl +++ b/trunk/gui/filemgmt.tcl @@ -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 }