mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add code comments
This commit is contained in:
parent
58f80996b7
commit
fa350ddb07
1 changed files with 2 additions and 2 deletions
|
|
@ -211,8 +211,8 @@ namespace Flow.Launcher.ViewModel
|
|||
switch (Visibility)
|
||||
{
|
||||
case Visibility.Collapsed when Results.Count > 0:
|
||||
// Show it only if the results are selected
|
||||
if (_mainVM == null || _mainVM.ResultsSelected(this))
|
||||
if (_mainVM == null || // The results is for preview only in apprerance page
|
||||
_mainVM.ResultsSelected(this)) // The results are selected
|
||||
{
|
||||
SelectedIndex = 0;
|
||||
Visibility = Visibility.Visible;
|
||||
|
|
|
|||
Loading…
Reference in a new issue