Skip to content

Commit

Permalink
Merge pull request #10 from vicb/venu3
Browse files Browse the repository at this point in the history
Add support for the Venu3 and the latest SDK
  • Loading branch information
blotspot committed May 30, 2024
2 parents ec1c362 + 1dfec55 commit bf7c52d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/Settings.mc
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ module Settings {
var _resources as Dictionary<Symbol, Object> = {};
}

var DataFieldRez as Array<Lang.ResourceId> = [];
var DataFieldRez as Array<ResourceId> = [];
4 changes: 2 additions & 2 deletions source/datafield/DateAndTime.mc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class DateAndTime extends WatchUi.Drawable {

var mBurnInProtectionMode;

var DayOfWeek as Array<Lang.ResourceId> = [];
var Months as Array<Lang.ResourceId> = [];
var DayOfWeek as Array<ResourceId> = [];
var Months as Array<ResourceId> = [];

function initialize(params as Object) {
Drawable.initialize(params);
Expand Down
4 changes: 2 additions & 2 deletions source/settingsMenu/ProtomoleculeSettingsMenu.mc
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ function menuItem(id, label, subLabel) {
return new WatchUi.MenuItem(label, subLabel, id, null);
}

var _theme as Null or Array<Lang.ResourceId> = null;
var _theme as Null or Array<ResourceId> = null;

function getThemeString(themeId) {
if (_theme == null) {
Expand All @@ -242,7 +242,7 @@ function getThemeString(themeId) {
return Settings.resource(_theme[themeId]);
}

var _layout as Null or Array<Lang.ResourceId> = null;
var _layout as Null or Array<ResourceId> = null;

function getLayoutString(layoutId) {
if (_layout == null) {
Expand Down

0 comments on commit bf7c52d

Please sign in to comment.