/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/ConfigDefaults.cs
22 строки
1 KB
Seraphima Zykova
[FancyZones] Replace "Keep windows in their zones" option to include work area and turn on by default (#29105)
17 окт 2023, 17:28
Не верифицирован
17 окт 2023, 17:28
d25edc3
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.PowerToys.Settings.UI.Library { public static class ConfigDefaults { // Fancy Zones Default Colors public static readonly string DefaultFancyZonesZoneHighlightColor = "#0078D7"; public static readonly string DefaultFancyZonesInActiveColor = "#F5FCFF"; public static readonly string DefaultFancyzonesBorderColor = "#FFFFFF"; public static readonly string DefaultFancyzonesNumberColor = "#000000"; // Fancy Zones Default Flags. public static readonly bool DefaultFancyzonesShiftDrag = true; public static readonly bool DefaultUseCursorposEditorStartupscreen = true; public static readonly bool DefaultFancyzonesQuickLayoutSwitch = true; public static readonly bool DefaultFancyzonesFlashZonesOnQuickSwitch = true; public static readonly bool DefaultFancyzonesDisplayOrWorkAreaChangeMoveWindows = true; } }