mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove setter for observable collection & Add blank line for code quality
This commit is contained in:
parent
6e36b08cad
commit
152ad2f86a
2 changed files with 5 additions and 2 deletions
|
|
@ -23,9 +23,11 @@ namespace Flow.Launcher
|
|||
OnPropertyChanged(nameof(CustomBrowser));
|
||||
}
|
||||
}
|
||||
public ObservableCollection<CustomBrowserViewModel> CustomBrowsers { get; set; }
|
||||
|
||||
public ObservableCollection<CustomBrowserViewModel> CustomBrowsers { get; }
|
||||
|
||||
public CustomBrowserViewModel CustomBrowser => CustomBrowsers[SelectedCustomBrowserIndex];
|
||||
|
||||
public SelectBrowserWindow(Settings settings)
|
||||
{
|
||||
_settings = settings;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,8 @@ namespace Flow.Launcher
|
|||
OnPropertyChanged(nameof(CustomExplorer));
|
||||
}
|
||||
}
|
||||
public ObservableCollection<CustomExplorerViewModel> CustomExplorers { get; set; }
|
||||
|
||||
public ObservableCollection<CustomExplorerViewModel> CustomExplorers { get; }
|
||||
|
||||
public CustomExplorerViewModel CustomExplorer => CustomExplorers[SelectedCustomExplorerIndex];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue