Fixed "Create" Button Size 25/316325/1
authorMd. Shahrukh Islam/NC eXperience Group /SRBD/Engineer/Samsung Electronics <shahrukh.i@samsung.com>
Mon, 19 Aug 2024 09:26:26 +0000 (15:26 +0600)
committerMd. Shahrukh Islam/NC eXperience Group /SRBD/Engineer/Samsung Electronics <shahrukh.i@samsung.com>
Mon, 19 Aug 2024 09:26:26 +0000 (15:26 +0600)
[Problem] [TNINE-4169] Create button text is Smaller than the Cancel button text in Create playlist popup

[Cause & Measure]
 Cause : PointSize was assigned with smaller value and fontstyle was not similar.
 Measure : Assigned PointSize with another value so that fontsize becomes same like "Cancel" button and usded UIFontStyles.AllNormal for similarity.

Change-Id: I64e9f82854c18ed0249352b290db1b54e7bd3739
Signed-off-by: Md. Shahrukh Islam/NC eXperience Group /SRBD/Engineer/Samsung Electronics <shahrukh.i@samsung.com>
music-player/Views/PlaylistView.cs
packaging/org.tizen.MusicPlayer-1.0.1.tpk

index d572031d3ea6ea497eecbcb26359ed773f32bac8..4320f657288249e777fa078174b2e16adb5666c6 100755 (executable)
@@ -240,8 +240,9 @@ namespace MusicPlayer.Views
                 Size2D = new Size2D(336, 96).SpToPx(),
                 Name = "AlertDialogCreateButton",
                 TranslatableText = "IDS_CREATE",
-                PointSize = 16.SpToPx(),
+                PointSize = 33.SpToPx(),
             };
+            createButton.TextLabel.FontStyle = UIFontStyles.AllNormal;
             return createButton;
         }
 
index 1149ef0c168c75ce0e537214a274ce74bb3b0e8b..5b9a08270024ed4d327411adb45256361451e576 100644 (file)
Binary files a/packaging/org.tizen.MusicPlayer-1.0.1.tpk and b/packaging/org.tizen.MusicPlayer-1.0.1.tpk differ