diff --git a/library.json b/library.json index b6820da..e9651e7 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Watchy", - "version": "1.2.10", + "version": "1.2.11", "description": "Watchy - An Open Source E-Paper Watch by SQFMI", "authors": [ { diff --git a/library.properties b/library.properties index b40895f..4cb4067 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Watchy -version=1.2.10 +version=1.2.11 author=SQFMI maintainer=SQFMI sentence=Watchy - An Open Source E-Paper Watch by SQFMI diff --git a/src/Watchy.cpp b/src/Watchy.cpp index 2b67209..a334f5b 100644 --- a/src/Watchy.cpp +++ b/src/Watchy.cpp @@ -90,6 +90,8 @@ void Watchy::handleButtonPress(){ showMenu(menuIndex, false);//exit to menu if already in app }else if(guiState == FW_UPDATE_STATE){ showMenu(menuIndex, false);//exit to menu if already in app + }else if(guiState == WATCHFACE_STATE){ + return; } } //Up Button @@ -100,6 +102,8 @@ void Watchy::handleButtonPress(){ menuIndex = MENU_LENGTH - 1; } showMenu(menuIndex, true); + }else if(guiState == WATCHFACE_STATE){ + return; } } //Down Button @@ -110,6 +114,8 @@ void Watchy::handleButtonPress(){ menuIndex = 0; } showMenu(menuIndex, true); + }else if(guiState == WATCHFACE_STATE){ + return; } }