From 365f29de641e05a6442e823787314a1b421079d4 Mon Sep 17 00:00:00 2001 From: Lee Chang Joo Date: Wed, 7 Oct 2020 14:20:32 +0900 Subject: [PATCH] [System][Non-ACR] Add comments in DisplayState and PowerLock (#2084) - Dim is not supported, when DIM state is disabled. Signed-off-by: lokilee73 --- src/Tizen.System/Device/Display.cs | 3 +++ src/Tizen.System/Device/Power.cs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/Tizen.System/Device/Display.cs b/src/Tizen.System/Device/Display.cs index 39323b3..71f665c 100644 --- a/src/Tizen.System/Device/Display.cs +++ b/src/Tizen.System/Device/Display.cs @@ -22,6 +22,9 @@ namespace Tizen.System /// Enumeration for the available display states. /// An application cannot put the device into the power off state or the suspend state. /// + /// + /// Dim may not be supported if the DIM state is disabled on the platform. + /// /// 3 public enum DisplayState { diff --git a/src/Tizen.System/Device/Power.cs b/src/Tizen.System/Device/Power.cs index fb833e9..f2fead7 100644 --- a/src/Tizen.System/Device/Power.cs +++ b/src/Tizen.System/Device/Power.cs @@ -21,6 +21,9 @@ namespace Tizen.System /// /// Enumeration for power lock type. /// + /// + /// DisplayDim may not be supported if the DIM state is disabled on the platform. + /// /// 5 public enum PowerLock { -- 2.7.4