forked from organicmaps/organicmaps
[ios] Remove a separator from LayersVC
Separator should be visible only for the Layers + Menu and hidden for the Layers only. Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
165692657c
commit
b3d800ab4a
2 changed files with 3 additions and 15 deletions
|
@ -87,6 +87,9 @@ extension BottomMenuPresenter {
|
|||
case .layers:
|
||||
let cell = tableView.dequeueReusableCell(cell: BottomMenuLayersCell.self)!
|
||||
cell.onClose = { [weak self] in self?.onClosePressed() }
|
||||
if sections.count > 1 {
|
||||
cell.addSeparator(.bottom)
|
||||
}
|
||||
return cell
|
||||
case .items:
|
||||
let cell = tableView.dequeueReusableCell(cell: BottomMenuItemCell.self)!
|
||||
|
|
|
@ -154,16 +154,6 @@
|
|||
</mask>
|
||||
</variation>
|
||||
</stackView>
|
||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="75k-vD-FSR" userLabel="Separator">
|
||||
<rect key="frame" x="0.0" y="164" width="340" height="1"/>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.12" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="1" id="olJ-Rf-VTO"/>
|
||||
</constraints>
|
||||
<userDefinedRuntimeAttributes>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="Divider"/>
|
||||
</userDefinedRuntimeAttributes>
|
||||
</view>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<constraints>
|
||||
|
@ -179,11 +169,6 @@
|
|||
</tableViewCellContentView>
|
||||
<viewLayoutGuide key="safeArea" id="njF-e1-oar"/>
|
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<constraints>
|
||||
<constraint firstItem="75k-vD-FSR" firstAttribute="trailing" secondItem="njF-e1-oar" secondAttribute="trailing" id="6Po-s2-mvn"/>
|
||||
<constraint firstItem="njF-e1-oar" firstAttribute="bottom" secondItem="75k-vD-FSR" secondAttribute="bottom" id="mtK-Ba-kQj"/>
|
||||
<constraint firstItem="njF-e1-oar" firstAttribute="leading" secondItem="75k-vD-FSR" secondAttribute="leading" id="nhe-Sa-Mlo"/>
|
||||
</constraints>
|
||||
<connections>
|
||||
<outlet property="closeButton" destination="2xW-dK-D9y" id="RQI-hb-JpS"/>
|
||||
<outlet property="isoLinesButton" destination="edA-Mo-3Vx" id="qoC-8w-EqY"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue