Add fonts, remove Digital
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
diff --git a/main.cpp b/main.cpp
|
||||
index 8070db7..530ff4b 100644
|
||||
--- a/main.cpp
|
||||
+++ b/main.cpp
|
||||
@@ -823,14 +823,10 @@ public:
|
||||
void switch_to_screen(uint8_t screen_idx)
|
||||
{
|
||||
if (screen_idx == 1) {
|
||||
- settingsController.SetWatchFace(Pinetime::Applications::WatchFace::Digital);
|
||||
- displayApp.StartApp(Pinetime::Applications::Apps::Clock, Pinetime::Applications::DisplayApp::FullRefreshDirections::None);
|
||||
- }
|
||||
- else if (screen_idx == 2) {
|
||||
settingsController.SetWatchFace(Pinetime::Applications::WatchFace::Analog);
|
||||
displayApp.StartApp(Pinetime::Applications::Apps::Clock, Pinetime::Applications::DisplayApp::FullRefreshDirections::None);
|
||||
}
|
||||
- else if (screen_idx == 3) {
|
||||
+ else if (screen_idx == 2) {
|
||||
settingsController.SetWatchFace(Pinetime::Applications::WatchFace::PineTimeStyle);
|
||||
displayApp.StartApp(Pinetime::Applications::Apps::Clock, Pinetime::Applications::DisplayApp::FullRefreshDirections::None);
|
||||
}
|
||||
@@ -1,9 +1,13 @@
|
||||
diff --git a/littlefs-do-main.cpp b/littlefs-do-main.cpp
|
||||
index 0a5dfbd..5d902f8 100644
|
||||
index 0a5dfbd..3e818af 100644
|
||||
--- a/littlefs-do-main.cpp
|
||||
+++ b/littlefs-do-main.cpp
|
||||
@@ -540,7 +540,7 @@ int command_settings(const std::string &program_name, const std::vector<std::str
|
||||
if (val == Pinetime::Applications::WatchFace::Digital) return "Digital";
|
||||
@@ -537,10 +537,10 @@ int command_settings(const std::string &program_name, const std::vector<std::str
|
||||
{
|
||||
auto clockface = settingsController.GetWatchFace();
|
||||
auto clockface_str = [](auto val) {
|
||||
- if (val == Pinetime::Applications::WatchFace::Digital) return "Digital";
|
||||
+ //if (val == Pinetime::Applications::WatchFace::Digital) return "Digital";
|
||||
if (val == Pinetime::Applications::WatchFace::Analog) return "Analog";
|
||||
if (val == Pinetime::Applications::WatchFace::PineTimeStyle) return "PineTimeStyle";
|
||||
- if (val == Pinetime::Applications::WatchFace::Terminal) return "Terminal";
|
||||
|
||||
Reference in New Issue
Block a user