From 4e1cde192211c7461f7136501c01a723e68cb383 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 10 Apr 2024 14:58:32 -0500 Subject: [PATCH 1/2] fixed bug in attributed string creation Signed-off-by: Matt Bruce --- VDS/Extensions/NSAttributedString.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/VDS/Extensions/NSAttributedString.swift b/VDS/Extensions/NSAttributedString.swift index 4f758762..6d168182 100644 --- a/VDS/Extensions/NSAttributedString.swift +++ b/VDS/Extensions/NSAttributedString.swift @@ -68,9 +68,7 @@ extension NSMutableAttributedString { .paragraphStyle: paragraph] //set letterSpacing - if textStyle.letterSpacing > 0.0 { - attributes[.kern] = textStyle.letterSpacing - } + attributes[.kern] = textStyle.letterSpacing return NSMutableAttributedString(string: text, attributes: attributes) From aaf2ddc08bc155ccb72833dd31693ce890bee59a Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 10 Apr 2024 15:01:23 -0500 Subject: [PATCH 2/2] CXTDT-540077 - BadgeIndicator Font Signed-off-by: Matt Bruce --- VDS/SupportingFiles/ReleaseNotes.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index c62a7946..62650dfc 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -1,3 +1,7 @@ +1.0.59 +---------------- +- CXTDT-540077 - BadgeIndicator Font + 1.0.58 ---------------- - CXTDT-542341 - RadioButtonItem - disabled state color/borderWidth