mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
[Awake][Settings]Don't hide "Keep screen on" (#23575)
* [Awake][Settings]Don't hide "Keep screen on" * Change tray menu as well
This commit is contained in:
@@ -106,7 +106,7 @@ namespace Awake.Core
|
|||||||
PInvoke.InsertMenu(TrayMenu, 0, MENU_ITEM_FLAGS.MF_BYPOSITION | MENU_ITEM_FLAGS.MF_SEPARATOR, 0, string.Empty);
|
PInvoke.InsertMenu(TrayMenu, 0, MENU_ITEM_FLAGS.MF_BYPOSITION | MENU_ITEM_FLAGS.MF_SEPARATOR, 0, string.Empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
PInvoke.InsertMenu(TrayMenu, 0, MENU_ITEM_FLAGS.MF_BYPOSITION | MENU_ITEM_FLAGS.MF_STRING | (keepDisplayOn ? MENU_ITEM_FLAGS.MF_CHECKED : MENU_ITEM_FLAGS.MF_UNCHECKED), (uint)TrayCommands.TC_DISPLAY_SETTING, "Keep screen on");
|
PInvoke.InsertMenu(TrayMenu, 0, MENU_ITEM_FLAGS.MF_BYPOSITION | MENU_ITEM_FLAGS.MF_STRING | (keepDisplayOn ? MENU_ITEM_FLAGS.MF_CHECKED : MENU_ITEM_FLAGS.MF_UNCHECKED) | (mode == AwakeMode.PASSIVE ? MENU_ITEM_FLAGS.MF_DISABLED : MENU_ITEM_FLAGS.MF_ENABLED), (uint)TrayCommands.TC_DISPLAY_SETTING, "Keep screen on");
|
||||||
}
|
}
|
||||||
|
|
||||||
// In case there are no tray shortcuts defined for the application default to a
|
// In case there are no tray shortcuts defined for the application default to a
|
||||||
|
|||||||
@@ -1822,6 +1822,9 @@ From there, simply click on one of the supported files in the File Explorer and
|
|||||||
<data name="Awake_EnableDisplayKeepAwake.Header" xml:space="preserve">
|
<data name="Awake_EnableDisplayKeepAwake.Header" xml:space="preserve">
|
||||||
<value>Keep screen on</value>
|
<value>Keep screen on</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Awake_EnableDisplayKeepAwake.Description" xml:space="preserve">
|
||||||
|
<value>This setting is only available when keeping the PC awake</value>
|
||||||
|
</data>
|
||||||
<data name="Awake_Mode.Header" xml:space="preserve">
|
<data name="Awake_Mode.Header" xml:space="preserve">
|
||||||
<value>Mode</value>
|
<value>Mode</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -83,7 +83,7 @@
|
|||||||
<labs:SettingsCard
|
<labs:SettingsCard
|
||||||
x:Uid="Awake_EnableDisplayKeepAwake"
|
x:Uid="Awake_EnableDisplayKeepAwake"
|
||||||
HeaderIcon="{ui:FontIcon FontFamily={StaticResource SymbolThemeFontFamily}, Glyph=}"
|
HeaderIcon="{ui:FontIcon FontFamily={StaticResource SymbolThemeFontFamily}, Glyph=}"
|
||||||
Visibility="{x:Bind ViewModel.IsScreenConfigurationPossibleEnabled, Mode=OneWay}">
|
IsEnabled="{x:Bind ViewModel.IsScreenConfigurationPossibleEnabled, Mode=OneWay}">
|
||||||
<ToggleSwitch
|
<ToggleSwitch
|
||||||
x:Uid="ToggleSwitch"
|
x:Uid="ToggleSwitch"
|
||||||
IsOn="{x:Bind ViewModel.KeepDisplayOn, Mode=TwoWay}" />
|
IsOn="{x:Bind ViewModel.KeepDisplayOn, Mode=TwoWay}" />
|
||||||
|
|||||||
Reference in New Issue
Block a user