1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-06 23:23:07 +01:00
metatext-app-ios-iphone-ipad/Views/UIKit/Table View Cells/SeparatorConfiguredTableViewCell.swift
Justin Mazzocchi d716e8a68e
Refactoring
2021-02-08 18:48:02 -08:00

18 lines
471 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
class SeparatorConfiguredTableViewCell: UITableViewCell {
override func layoutSubviews() {
super.layoutSubviews()
if UIDevice.current.userInterfaceIdiom == .phone {
separatorInset.left = 0
separatorInset.right = 0
} else {
separatorInset.left = layoutMargins.left
separatorInset.right = layoutMargins.right
}
}
}