diff options
| author | JF <jf@codingfield.com> | 2020-04-05 16:59:15 (GMT) |
|---|---|---|
| committer | Gitea <gitea@fake.local> | 2020-04-05 16:59:15 (GMT) |
| commit | 6e1bd118c5ecc53016548072501591b329500870 (patch) | |
| tree | 8447f6b7bbff0f423e9cf5d15ed709c630bed25e /src/DisplayApp/Screens/Tile.cpp | |
| parent | 7e9a7e4d5fa0f55b43180600d499f1d0ce6aded1 (diff) | |
| parent | d5c2a58914fdeac4ef69382269b81d529e6d7c90 (diff) | |
Merge branch 'ble-notifications' of JF/PineTime into develop
Diffstat (limited to 'src/DisplayApp/Screens/Tile.cpp')
| -rw-r--r-- | src/DisplayApp/Screens/Tile.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DisplayApp/Screens/Tile.cpp b/src/DisplayApp/Screens/Tile.cpp index 7eb1018..6c225c9 100644 --- a/src/DisplayApp/Screens/Tile.cpp +++ b/src/DisplayApp/Screens/Tile.cpp @@ -123,7 +123,9 @@ void Tile::OnObjectEvent(lv_obj_t *obj, lv_event_t event, uint32_t buttonId) { tile->StartClockApp(); break; case 3: - modal->Show(); + char versionStr[20]; + sprintf(versionStr, "VERSION: %d.%d.%d", Version::Major(), Version::Minor(), Version::Patch()); + modal->Show(versionStr); break; case 4: tile->StartSysInfoApp(); |
