summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier S. Pedro <dev.git@javispedro.com>2014-09-27 15:46:20 +0200
committerJavier S. Pedro <dev.git@javispedro.com>2014-09-27 15:46:20 +0200
commit890901db0118aec55bce2b8f0c63d7fb5a35fcd8 (patch)
tree7e24448186aa51f3a48fc241e5651ebca5f36553
parent43af250113b048a5a110b027f4525dc994af231f (diff)
downloadsalmeta-890901db0118aec55bce2b8f0c63d7fb5a35fcd8.tar.gz
salmeta-890901db0118aec55bce2b8f0c63d7fb5a35fcd8.zip
handle notification mode entering messages
-rw-r--r--src/controller.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/controller.cpp b/src/controller.cpp
index 44fe393..0a502da 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -199,6 +199,14 @@ void Controller::handleMetaWatchModeChange(MetaWatch::WatchMode mode, int page)
}
break;
+ case MetaWatch::WatchModeNotification:
+ if (_curMode != mode) {
+ _curMode = mode;
+ emit modeChanged();
+ }
+ // Watch will often go back to the same page once it returns to idle mode,
+ // so let's not clobber _curPage.
+ break;
default:
qWarning() << "Unhandled metawatch mode:" << mode;
break;