mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
Detect if all Drives are indexed and show a warning if they aren't (#5015)
* opens new settings search options * Catching file not found exception * removed unnecessary header files * Added display strings and cleaned up code * reduced the number of max results to 30 * added log statement for exception * Added drive detection to settings ui but still doesn't reflect on toggling it * added getter setter for DriveDetectionWarning * Got UI and backend to work as expected * Reading value from registry working as expected * Added test for settings * Added tests for drive detection * rename drive detection * Localized indexer string * formatting * resolving merge conflict * Added theme aware warning icon * changed text for the warning * Added the warning images to the installer
This commit is contained in:
@@ -26,6 +26,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib
|
||||
|
||||
public bool ignore_hotkeys_in_fullscreen { get; set; }
|
||||
|
||||
public bool disable_drive_detection_warning { get; set; }
|
||||
public bool clear_input_on_launch { get; set; }
|
||||
|
||||
public PowerLauncherProperties()
|
||||
@@ -37,6 +38,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib
|
||||
search_result_preference = "most_recently_used";
|
||||
search_type_preference = "application_name";
|
||||
ignore_hotkeys_in_fullscreen = false;
|
||||
disable_drive_detection_warning = false;
|
||||
clear_input_on_launch = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user