metric => decimal rename

This commit is contained in:
2025-11-03 19:35:46 +01:00
parent a54a66c419
commit 683569dca5
7 changed files with 27 additions and 23 deletions
@@ -1,7 +1,7 @@
using Toybox.Application;
using Toybox.WatchUi;
class MetricWatchFaceApp extends Application.AppBase {
class DecimalWatchFaceApp extends Application.AppBase {
function initialize() {
AppBase.initialize();
@@ -17,7 +17,7 @@ class MetricWatchFaceApp extends Application.AppBase {
// Return the initial view of your application here
function getInitialView() {
return [ new MetricWatchFaceView() ];
return [ new DecimalWatchFaceView() ];
}
}
@@ -5,7 +5,7 @@ using Toybox.Lang;
using Toybox.Time;
using Toybox.Time.Gregorian;
class MetricWatchFaceView extends WatchUi.WatchFace {
class DecimalWatchFaceView extends WatchUi.WatchFace {
function initialize() {
WatchFace.initialize();