diff options
author | arnova <arnova77@gmail.com> | 2022-02-13 11:47:46 +0100 |
---|---|---|
committer | arnova <arnova77@gmail.com> | 2022-02-28 09:18:53 +0100 |
commit | 786dfbbd66b02d4f96d1f7157456a2ae83ef0450 (patch) | |
tree | e3a88c45723265fe03c4fe27e9b22e722cca1099 /addons | |
parent | 8dab16564c2f160f591975b029914a191013a660 (diff) |
changed: Rename ambiguous IsInhibit-builtin to IdleShutdownInhibited
Diffstat (limited to 'addons')
-rw-r--r-- | addons/skin.estuary/xml/DialogButtonMenu.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/skin.estuary/xml/DialogButtonMenu.xml b/addons/skin.estuary/xml/DialogButtonMenu.xml index 90839ff75b..2481777f1f 100644 --- a/addons/skin.estuary/xml/DialogButtonMenu.xml +++ b/addons/skin.estuary/xml/DialogButtonMenu.xml @@ -68,12 +68,12 @@ <item> <label>$LOCALIZE[13017]</label> <onclick>InhibitIdleShutdown(true)</onclick> - <visible>System.HasShutdown +!System.IsInhibit</visible> + <visible>System.HasShutdown +!System.IdleShutdownInhibited</visible> </item> <item> <label>$LOCALIZE[13018]</label> <onclick>InhibitIdleShutdown(false)</onclick> - <visible>System.HasShutdown + System.IsInhibit</visible> + <visible>System.HasShutdown + System.IdleShutdownInhibited</visible> </item> </content> </control> |