File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,11 @@ public int SelectedCustomBrowserIndex
23
23
OnPropertyChanged ( nameof ( CustomBrowser ) ) ;
24
24
}
25
25
}
26
- public ObservableCollection < CustomBrowserViewModel > CustomBrowsers { get ; set ; }
26
+
27
+ public ObservableCollection < CustomBrowserViewModel > CustomBrowsers { get ; }
27
28
28
29
public CustomBrowserViewModel CustomBrowser => CustomBrowsers [ SelectedCustomBrowserIndex ] ;
30
+
29
31
public SelectBrowserWindow ( Settings settings )
30
32
{
31
33
_settings = settings ;
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ public int SelectedCustomExplorerIndex
31
31
OnPropertyChanged ( nameof ( CustomExplorer ) ) ;
32
32
}
33
33
}
34
- public ObservableCollection < CustomExplorerViewModel > CustomExplorers { get ; set ; }
34
+
35
+ public ObservableCollection < CustomExplorerViewModel > CustomExplorers { get ; }
35
36
36
37
public CustomExplorerViewModel CustomExplorer => CustomExplorers [ SelectedCustomExplorerIndex ] ;
37
38
You can’t perform that action at this time.
0 commit comments