From: Yurii Zinchuk/Tizen Services & IoT (PLT) /SRPOL/Engineer/Samsung Electronics Date: Fri, 26 Jan 2024 08:44:28 +0000 (+0100) Subject: fix typo X-Git-Tag: accepted/tizen/unified/20240222.163404~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d4b73a040e1527dce2c61b907fbf49b0f0eb1333;p=profile%2Fiot%2Fapps%2Fdotnet%2Fsettings.git fix typo --- diff --git a/SettingCore/Views/MainMenuItem.cs b/SettingCore/Views/MainMenuItem.cs index 1820e45..a9575a8 100644 --- a/SettingCore/Views/MainMenuItem.cs +++ b/SettingCore/Views/MainMenuItem.cs @@ -17,7 +17,7 @@ namespace SettingCore.Views public string MenuPath { get; private set; } - public MainMenuItem(string iconPath, Color iconBackgroungColor, string title, string menuPath) : base() + public MainMenuItem(string iconPath, Color iconBackgroundColor, string title, string menuPath) : base() { Layout = new LinearLayout { @@ -28,7 +28,7 @@ namespace SettingCore.Views iconBackground = new View { CornerRadius = 5.SpToPx(), - BackgroundColor = iconBackgroungColor, + BackgroundColor = iconBackgroundColor, Size = new Size(32, 32).SpToPx(), Margin = new Extents(16, 16, 16, 16).SpToPx(), }; @@ -71,10 +71,10 @@ namespace SettingCore.Views ThemeManager.ThemeChanged += ThemeManager_ThemeChanged; } - public void UpdateItem(string title, Color iconBackgroungColor) + public void UpdateItem(string title, Color iconBackgroundColor) { titleTextLabel.Text = title; - iconBackground.BackgroundColor = iconBackgroungColor; + iconBackground.BackgroundColor = iconBackgroundColor; } public override void OnChangeSelected(bool selected)