mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
@@ -54,6 +54,16 @@ namespace Wox
|
||||
{
|
||||
#region General
|
||||
|
||||
cbHideOnStartup.Checked += (o, e) =>
|
||||
{
|
||||
_settings.HideOnStartup = true;
|
||||
};
|
||||
|
||||
cbHideOnStartup.Unchecked += (o, e) =>
|
||||
{
|
||||
_settings.HideOnStartup = false;
|
||||
};
|
||||
|
||||
cbHideWhenDeactive.Checked += (o, e) =>
|
||||
{
|
||||
_settings.HideWhenDeactive = true;
|
||||
@@ -114,6 +124,7 @@ namespace Wox
|
||||
//MainWindow.pnlResult.lbResults.GetBindingExpression(MaxHeightProperty).UpdateTarget();
|
||||
};
|
||||
|
||||
cbHideOnStartup.IsChecked = _settings.HideOnStartup;
|
||||
cbHideWhenDeactive.IsChecked = _settings.HideWhenDeactive;
|
||||
cbDontPromptUpdateMsg.IsChecked = _settings.DontPromptUpdateMsg;
|
||||
cbRememberLastLocation.IsChecked = _settings.RememberLastLaunchLocation;
|
||||
|
||||
Reference in New Issue
Block a user