B2018-129 MRU list was being cleared. Needed to remove a (string) typecast in an IF statement.
This commit is contained in:
parent
1d113b519d
commit
f8d1055756
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user