From 0f549ae77de2061cbba358dce46579e82624ce95 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Tue, 24 Sep 2024 15:00:34 +1000 Subject: [PATCH] Renamed 'ScrollableLabelView' to 'ScrollableLabel' --- Session.xcodeproj/project.pbxproj | 8 ++++---- SessionUIKit/Components/ConfirmationModal.swift | 4 ++-- .../{ScrollableLabelView.swift => ScrollableLabel.swift} | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename SessionUIKit/Components/{ScrollableLabelView.swift => ScrollableLabel.swift} (99%) diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index cff448967..966fe0f64 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -425,7 +425,7 @@ D2AEACDC16C426DA00C364C0 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AEACDB16C426DA00C364C0 /* CFNetwork.framework */; }; FC3BD9881A30A790005B96BB /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC3BD9871A30A790005B96BB /* Social.framework */; }; FCB11D8C1A129A76002F93FB /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FCB11D8B1A129A76002F93FB /* CoreMedia.framework */; }; - FD0150582CA27DF3005B08A1 /* ScrollableLabelView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0150572CA27DEE005B08A1 /* ScrollableLabelView.swift */; }; + FD0150582CA27DF3005B08A1 /* ScrollableLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0150572CA27DEE005B08A1 /* ScrollableLabel.swift */; }; FD0606BF2BC8C10200C3816E /* _005_AddJobUniqueHash.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0606BE2BC8C10200C3816E /* _005_AddJobUniqueHash.swift */; }; FD0606C32BCE13ED00C3816E /* MessageRequestFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0606C22BCE13ED00C3816E /* MessageRequestFooterView.swift */; }; FD078E4827E02561000769AF /* CommonMockedExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD078E4727E02561000769AF /* CommonMockedExtensions.swift */; }; @@ -1642,7 +1642,7 @@ E1A0AD8B16E13FDD0071E604 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; FC3BD9871A30A790005B96BB /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; }; FCB11D8B1A129A76002F93FB /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; }; - FD0150572CA27DEE005B08A1 /* ScrollableLabelView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScrollableLabelView.swift; sourceTree = ""; }; + FD0150572CA27DEE005B08A1 /* ScrollableLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScrollableLabel.swift; sourceTree = ""; }; FD0606BE2BC8C10200C3816E /* _005_AddJobUniqueHash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = _005_AddJobUniqueHash.swift; sourceTree = ""; }; FD0606C22BCE13ED00C3816E /* MessageRequestFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageRequestFooterView.swift; sourceTree = ""; }; FD078E4727E02561000769AF /* CommonMockedExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonMockedExtensions.swift; sourceTree = ""; }; @@ -3018,7 +3018,7 @@ FD52090628B49738006098F6 /* ConfirmationModal.swift */, C38EF2A3255B6D93007E1867 /* PlaceholderIcon.swift */, C38EF2A4255B6D93007E1867 /* ProfilePictureView.swift */, - FD0150572CA27DEE005B08A1 /* ScrollableLabelView.swift */, + FD0150572CA27DEE005B08A1 /* ScrollableLabel.swift */, FD71165A28E6DDBC00B47552 /* StyledNavigationController.swift */, FD0B77AF29B69A65009169BA /* TopBannerController.swift */, ); @@ -5561,7 +5561,7 @@ 942256992C23F8DD00C0FDBF /* Toast.swift in Sources */, C331FF972558FA6B00070591 /* Fonts.swift in Sources */, FD71165828E436E800B47552 /* Modal.swift in Sources */, - FD0150582CA27DF3005B08A1 /* ScrollableLabelView.swift in Sources */, + FD0150582CA27DF3005B08A1 /* ScrollableLabel.swift in Sources */, FD37E9D328A1FCDB003AE748 /* Theme+OceanDark.swift in Sources */, 942256972C23F8DD00C0FDBF /* SessionSearchBar.swift in Sources */, FD71165928E436E800B47552 /* ConfirmationModal.swift in Sources */, diff --git a/SessionUIKit/Components/ConfirmationModal.swift b/SessionUIKit/Components/ConfirmationModal.swift index 6f0f3984f..cbcd05f54 100644 --- a/SessionUIKit/Components/ConfirmationModal.swift +++ b/SessionUIKit/Components/ConfirmationModal.swift @@ -47,8 +47,8 @@ public class ConfirmationModal: Modal, UITextFieldDelegate { return result }() - private lazy var explanationLabel: ScrollableLabelView = { - let result: ScrollableLabelView = ScrollableLabelView() + private lazy var explanationLabel: ScrollableLabel = { + let result: ScrollableLabel = ScrollableLabel() result.font = .systemFont(ofSize: Values.smallFontSize) result.themeTextColor = .alert_text result.textAlignment = .center diff --git a/SessionUIKit/Components/ScrollableLabelView.swift b/SessionUIKit/Components/ScrollableLabel.swift similarity index 99% rename from SessionUIKit/Components/ScrollableLabelView.swift rename to SessionUIKit/Components/ScrollableLabel.swift index d10d380a5..7f03746f0 100644 --- a/SessionUIKit/Components/ScrollableLabelView.swift +++ b/SessionUIKit/Components/ScrollableLabel.swift @@ -2,7 +2,7 @@ import UIKit -class ScrollableLabelView: UIView { +class ScrollableLabel: UIView { private var oldSize: CGSize = .zero private var layoutLoopCounter: Int = 0