B2018-129 MRU list was being cleared. Needed to remove a (string) typecast in an IF statement.

This commit is contained in:
John Jenko 2018-09-18 19:46:57 +00:00
parent 1d113b519d
commit f8d1055756

View File

@ -294,7 +294,7 @@ namespace VEPROMS
string db = Volian.Base.Library.VlnSettings.GetDB();
if(db != null)
Database.SelectedDatabase = db;
if ((string)Properties.Settings.Default["DefaultDB"] != string.Empty)
if (Properties.Settings.Default["DefaultDB"] != string.Empty) //B2018-129 Most Recently Used list was being cleared. Needed to remove a (string) typecase in the IF statement
Database.LastDatabase = Properties.Settings.Default.DefaultDB;
// Setup the Context menu for DisplaySearch including the symbols
displaySearch1.SetupContextMenu();