mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Dev/crutkas/fixing warnings (#5161)
* new lines & braces * Tabs /space auto fix Co-authored-by: Clint Rutkas <crutkas@microsoft.com>
This commit is contained in:
@@ -49,10 +49,10 @@ namespace Microsoft.Plugin.Shell
|
||||
_settings.ReplaceWinR = false;
|
||||
};
|
||||
|
||||
ShellComboBox.SelectedIndex = (int) _settings.Shell;
|
||||
ShellComboBox.SelectedIndex = (int)_settings.Shell;
|
||||
ShellComboBox.SelectionChanged += (o, e) =>
|
||||
{
|
||||
_settings.Shell = (Shell) ShellComboBox.SelectedIndex;
|
||||
_settings.Shell = (Shell)ShellComboBox.SelectedIndex;
|
||||
LeaveShellOpen.IsEnabled = _settings.Shell != Shell.RunCommand;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user