[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>
Size2D = new Size2D(336, 96).SpToPx(),
Name = "AlertDialogCreateButton",
TranslatableText = "IDS_CREATE",
- PointSize = 16.SpToPx(),
+ PointSize = 33.SpToPx(),
};
+ createButton.TextLabel.FontStyle = UIFontStyles.AllNormal;
return createButton;
}