summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2016-02-15 10:55:52 -0500
committerJackLivio <jack@livio.io>2016-02-15 10:55:52 -0500
commit012e2d8838e35c34ed1c0e917d6a6b9781c066d3 (patch)
tree4e9637ae4de2c58f9ddd9eb43af4c6e8de4a4c27
parentbe8feae0e11c59e20f8c9b08c32f7f64937e0ee4 (diff)
downloadsmartdevicelink-hotfix/ok_button_notification_fix.tar.gz
Add NOT to checking if app is in full for OK button notificationhotfix/ok_button_notification_fix
-rw-r--r--src/components/application_manager/src/commands/mobile/on_button_event_notification.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/src/commands/mobile/on_button_event_notification.cc b/src/components/application_manager/src/commands/mobile/on_button_event_notification.cc
index 54575080c..5f14ad953 100644
--- a/src/components/application_manager/src/commands/mobile/on_button_event_notification.cc
+++ b/src/components/application_manager/src/commands/mobile/on_button_event_notification.cc
@@ -115,7 +115,7 @@ void OnButtonEventNotification::Run() {
//Send ButtonEvent notification for OK button only in HMI_FULL mode
if ((static_cast<uint32_t>(mobile_apis::ButtonName::OK) == btn_id) &&
- (subscribed_app->IsFullscreen())) {
+ (!subscribed_app->IsFullscreen())) {
continue;
}