[FancyZones] Increase the number of zones limit to 128 (#15976)

This commit is contained in:
Seraphima Zykova
2022-02-04 18:09:11 +03:00
committed by GitHub
parent f62dd6933c
commit a3dbb55404
13 changed files with 263 additions and 75 deletions

View File

@@ -513,7 +513,7 @@
Text="" />
<ui:NumberBox Minimum="1"
Maximum="40"
Maximum="128"
Width="216"
KeyDown="EditDialogNumberBox_KeyDown"
Margin="12,0,0,0"

View File

@@ -18,7 +18,7 @@ namespace FancyZonesEditor
public const int DefaultSensitivityRadius = 20;
public const int MaxZones = 40;
public const int MaxZones = 128;
public string ZonesetUuid { get; set; } = string.Empty;