summaryrefslogtreecommitdiff
path: root/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs
diff options
context:
space:
mode:
authorMyungki Lee <mk5004.lee@samsung.com>2017-07-07 16:33:16 +0900
committerSeungha Son <seungha.son@samsung.com>2017-08-10 15:27:46 +0900
commit81de2a7f5991fa1797edbd5800a0288410c206b8 (patch)
tree9ed99b23cb27b85e3b5a3111487aa877bf154920 /Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs
parent90cfd6da065b0cf1d8a34338c759406dfc6a989f (diff)
downloadapplication-81de2a7f5991fa1797edbd5800a0288410c206b8.tar.gz
application-81de2a7f5991fa1797edbd5800a0288410c206b8.tar.bz2
application-81de2a7f5991fa1797edbd5800a0288410c206b8.zip
Updates something by API reviewer request
- Adds new feature for tizen tv - Updates summary Change-Id: Ifdb43ea01157add557806aaec9bff3b4e1045f4e Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
Diffstat (limited to 'Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs')
-rwxr-xr-xTizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs b/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs
index 2d7eb4b..e7c6c21 100755
--- a/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs
+++ b/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationBinder.cs
@@ -30,7 +30,7 @@ namespace Tizen.Applications.Notifications
Interop.Notification.SetID(notification.Handle, notification.PrivID);
- if (notification.IsDisplay)
+ if (notification.IsVisible)
{
Interop.Notification.SetApplist(notification.Handle, (int)NotificationDisplayApplist.Tray);
}
@@ -78,7 +78,7 @@ namespace Tizen.Applications.Notifications
Interop.Notification.GetApplist(notification.Handle, out appList);
if ((appList & (int)NotificationDisplayApplist.Tray) == 0)
{
- notification.IsDisplay = false;
+ notification.IsVisible = false;
}
BindSafeHandleText(notification);