This is an automated email from the ASF dual-hosted git repository.
hiedra pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 823388d092 Fix MaterialIcon regularized
823388d092 is described below
commit 823388d0921d5b0a5d6e0a01aa03a2733e155204
Author: hiedra <[email protected]>
AuthorDate: Wed Apr 24 10:52:36 2024 +0200
Fix MaterialIcon regularized
---
examples/jewel/TourDeJewel/src/main/royale/TabBarPlayGround.mxml | 4 ++--
.../jewel/TourDeJewel/src/main/royale/models/MainNavigationModel.as | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/examples/jewel/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
b/examples/jewel/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
index 02379238cf..3723164dae 100644
--- a/examples/jewel/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
+++ b/examples/jewel/TourDeJewel/src/main/royale/TabBarPlayGround.mxml
@@ -52,14 +52,14 @@ limitations under the License.
tabBarData = new ArrayList([
new TabBarButtonVO("Other Tab 1",
"tab1", MaterialIconType.MORE),
new TabBarButtonVO("Other Tab 2",
"tab2", MaterialIconType.PAGES),
- new TabBarButtonVO("Other Tab 3",
"tab3", MaterialIconType.ZOMM_IN)
+ new TabBarButtonVO("Other Tab 3",
"tab3", MaterialIconType.ZOOM_IN)
]);
}
private var _tabBarDataOptional:ArrayList = new
ArrayList([
new TabBarButtonVO("Other Tab 1",
"tab1", MaterialIconType.MORE),
new TabBarButtonVO("Other Tab 2",
"tab2", MaterialIconType.PAGES),
- new TabBarButtonVO("Other Tab 3",
"tab3", MaterialIconType.ZOMM_IN)
+ new TabBarButtonVO("Other Tab 3",
"tab3", MaterialIconType.ZOOM_IN)
]);
[Bindable]
diff --git
a/examples/jewel/TourDeJewel/src/main/royale/models/MainNavigationModel.as
b/examples/jewel/TourDeJewel/src/main/royale/models/MainNavigationModel.as
index ac801e2f0e..792e53072e 100644
--- a/examples/jewel/TourDeJewel/src/main/royale/models/MainNavigationModel.as
+++ b/examples/jewel/TourDeJewel/src/main/royale/models/MainNavigationModel.as
@@ -65,7 +65,7 @@ package models
new NavigationLinkVO("DataGrid", "datagrid_panel",
MaterialIconType.VIEW_LIST),
new NavigationLinkVO("Tables", "tables_panel",
MaterialIconType.VIEW_COMFY),
new NavigationLinkVO("TabBar", "tabbar_panel",
MaterialIconType.TAB),
- new NavigationLinkVO("View States", "viewstates_panel",
MaterialIconType.CHORME_READER_MODE),
+ new NavigationLinkVO("View States", "viewstates_panel",
MaterialIconType.CHROME_READER_MODE),
new NavigationLinkVO("Wizard", "wizards_panel",
MaterialIconType.MOVIE_FILTER)
// new NavigationLinkVO("Tabs", "tabs_panel")
]);