Set regular font style for buttons 46/233946/1
authorLukasz Stanislawski <lukasz.stanislawski@gmail.com>
Wed, 20 May 2020 10:34:59 +0000 (12:34 +0200)
committerLukasz Stanislawski <lukasz.stanislawski@gmail.com>
Wed, 20 May 2020 13:55:44 +0000 (15:55 +0200)
Apply GUI guideline change from 15.05.2020

Change-Id: Ifef311bac66a4de327e64659314311c942a148cb

Oobe/Oobe.Language/LanguageStep.cs
Oobe/Oobe.Region/RegionStep.cs
Oobe/Oobe.Terms/Views/TermsView.cs
Oobe/Oobe.Welcome/WelcomeStep.cs
Oobe/Oobe.Wifi/WifiStep.cs

index 087c7e687dce93fe99309e179ea04ac39947655b..899b0b74b3cdf6c5930b2796fd29e2ecd9f98436 100644 (file)
@@ -82,7 +82,7 @@ namespace Oobe.Language
                 }
                 nav.Next();
             };
-            btn.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+            btn.SetFontStyle(new PropertyMap().AddRegularFontStyle());
 
             carousel.SelectedItemChanged += (sender, args) =>
             {
index ca8d51e036c6909d038cb73b2098ec45c8e5e672..ed9bfd37f6749ec78b104359c360954ed7083f47 100644 (file)
@@ -73,14 +73,14 @@ namespace Oobe.Region
                 }
                 nav.Next();
             };
-            next.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+            next.SetFontStyle(new PropertyMap().AddRegularFontStyle());
 
             Button prev = new Button(ButtonStyles.Previous);
             prev.Position2D = new Position2D(56, 512);
             prev.ClickEvent += (obj, args) => {
                 nav.Previous();
             };
-            prev.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+            prev.SetFontStyle(new PropertyMap().AddRegularFontStyle());
 
             container.Add(carousel);
             container.Add(title);
index c6970583fad5be91c37c771112399bd3fb42f373..b6c8c71785c1aa851b5e7424db478b1af5cec066 100644 (file)
@@ -92,7 +92,7 @@ namespace Oobe.Terms.Views
                 terms.AcceptTerms();
                 nav.Next();
             };
-            nextButton.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+            nextButton.SetFontStyle(new PropertyMap().AddRegularFontStyle());
 
             Button prev = new Button(ButtonStyles.Previous);
             prev.Position2D = new Position2D(56, 512);
@@ -100,7 +100,7 @@ namespace Oobe.Terms.Views
             {
                 nav.Previous();
             };
-            prev.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+            prev.SetFontStyle(new PropertyMap().AddRegularFontStyle());
 
             TextLabel guide = new TextLabel(TextLabelStyles.GuideTextLabelStyle);
             guide.Position2D = new Position2D(155, 442);
index e93fd9445cf7c672b9878414daa58f0e83f301a5..60ac24280dc6f8e8f5cf0896ef4a81c553498dbd 100644 (file)
@@ -54,7 +54,7 @@ namespace Oobe.Welcome
             next.ClickEvent += (obj, args) => {\r
                 nav.Finish();\r
             };\r
-            next.SetFontStyle(new PropertyMap().AddBoldFontStyle());\r
+            next.SetFontStyle(new PropertyMap().AddRegularFontStyle());\r
 \r
             container.Add(title);\r
             container.Add(next);\r
index b3b515950fc95a5e2d0d086d51c6a7ea90a2b4f5..1cf52f0a85f288174e244d6715609054a4808f66 100644 (file)
@@ -80,7 +80,7 @@ namespace Oobe.Wifi
                 Position = new Position(56, 10),
                 Size2D = new Size2D(240, 72),
             };
-            Oobe.Common.Styles.ButtonsExtensions.SetFontStyle(prev, new PropertyMap().AddBoldFontStyle());
+            Oobe.Common.Styles.ButtonsExtensions.SetFontStyle(prev, new PropertyMap().AddRegularFontStyle());
             prev.ClickEvent += (s, e) => nav.Previous();
             view.Add(prev);
 
@@ -89,7 +89,7 @@ namespace Oobe.Wifi
                 Position = new Position(888, 10),
                 Size2D = new Size2D(240, 72),
             };
-            next.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+            next.SetFontStyle(new PropertyMap().AddRegularFontStyle());
             next.ClickEvent += (s, e) => nav.Next();
             view.Add(next);