mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
Added Features
Feature: Search additional folders by default (shallow search) Feature: Disable bookmarks
This commit is contained in:
@@ -67,6 +67,15 @@ namespace Wox
|
||||
UserSettingStorage.Instance.Save();
|
||||
};
|
||||
|
||||
cbEnableBookmarkPlugin.Checked += (o, e) => {
|
||||
UserSettingStorage.Instance.EnableBookmarkPlugin = true;
|
||||
UserSettingStorage.Instance.Save();
|
||||
};
|
||||
cbEnableBookmarkPlugin.Unchecked += (o, e) => {
|
||||
UserSettingStorage.Instance.EnableBookmarkPlugin = false;
|
||||
UserSettingStorage.Instance.Save();
|
||||
};
|
||||
|
||||
#region Load Theme Data
|
||||
|
||||
if (!string.IsNullOrEmpty(UserSettingStorage.Instance.QueryBoxFont) &&
|
||||
|
||||
Reference in New Issue
Block a user