Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Nextcloud.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -5759,7 +5759,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = NKUJUXUJ3B;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -5825,7 +5825,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_TEAM = NKUJUXUJ3B;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down
1 change: 0 additions & 1 deletion iOSClient/Main/Collection Common/Cell/NCListCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ class NCListCell: UICollectionViewCell, UIGestureRecognizerDelegate, NCCellMainP
labelSubinfo.font = .caption1()
labelSubinfo.adjustsFontForContentSizeCategory = true


separatorHeightConstraint.constant = 0.5

buttonMore.menu = nil
Expand Down
6 changes: 3 additions & 3 deletions iOSClient/More/NCMore.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
<constraint firstAttribute="width" constant="25" id="ldi-oV-Yce"/>
</constraints>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="E8e-56-e81">
<rect key="frame" x="60" y="15" width="334" height="20"/>
<fontDescription key="fontDescription" style="UICTFontTextStyleCallout"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="E8e-56-e81">
<rect key="frame" x="60" y="15" width="334" height="20.5"/>
<fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
Expand Down
2 changes: 1 addition & 1 deletion iOSClient/More/NCMore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ class NCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
// adjustsFontForContentSizeCategory:
// Enables live updates when accessibility settings change.
//
cell.labelText?.font = .callout()
cell.labelText?.font = .body()
cell.labelText?.adjustsFontForContentSizeCategory = true

cell.accessoryType = UITableViewCell.AccessoryType.disclosureIndicator
Expand Down
Loading