File tree Expand file tree Collapse file tree
LogExpert.Persister.Tests
LogExpert.UI/Controls/LogWindow Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -357,7 +357,8 @@ public void RoundTrip_WithApplicationStartupDir_PreservesAllData ()
357357 MultiFile = true ,
358358 MultiFilePattern = "test*.log" ,
359359 MultiFileMaxDays = 7 ,
360- LineCount = 1000
360+ LineCount = 1000 ,
361+ CellSelectMode = true
361362 } ;
362363
363364 // Act
@@ -377,6 +378,7 @@ public void RoundTrip_WithApplicationStartupDir_PreservesAllData ()
377378 Assert . That ( loadedData . MultiFilePattern , Is . EqualTo ( originalData . MultiFilePattern ) , "MultiFilePattern should match" ) ;
378379 Assert . That ( loadedData . MultiFileMaxDays , Is . EqualTo ( originalData . MultiFileMaxDays ) , "MultiFileMaxDays should match" ) ;
379380 Assert . That ( loadedData . LineCount , Is . EqualTo ( originalData . LineCount ) , "LineCount should match" ) ;
381+ Assert . That ( loadedData . CellSelectMode , Is . EqualTo ( originalData . CellSelectMode ) , "CellSelectMode should match" ) ;
380382 }
381383
382384 [ Test ]
Original file line number Diff line number Diff line change @@ -2462,7 +2462,7 @@ private bool LoadPersistenceOptions ()
24622462 AdjustHighlightSplitterWidth ( ) ;
24632463 SetCurrentHighlightGroup ( persistenceData . HighlightGroupName ) ;
24642464
2465- SetCellSelectionMode ( persistenceData . CellSelectMode ) ;
2465+ SetCellSelectionMode ( persistenceData . CellSelectMode , true ) ;
24662466
24672467 if ( persistenceData . MultiFileNames . Count > 0 )
24682468 {
You can’t perform that action at this time.
0 commit comments