Skip to content

Commit

Permalink
Fixed non-transparent location list menu.
Browse files Browse the repository at this point in the history
  • Loading branch information
qazwini committed Dec 30, 2020
1 parent 9cc2183 commit c202401
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Turbah.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.2;
PRODUCT_BUNDLE_IDENTIFIER = com.MMQ.Turbah;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -485,7 +485,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.2;
PRODUCT_BUNDLE_IDENTIFIER = com.MMQ.Turbah;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Turbah/Views/View Controller/LocationListCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class LocationListCell: UITableViewCell {
var titleLabel = UILabel()

private func setupUI() {
backgroundColor = nil
backgroundColor = .clear

vibrancyView.effect = UIVibrancyEffect(blurEffect: blurEffect, style: .secondaryLabel)
contentView.addSubview(vibrancyView)
Expand Down
2 changes: 1 addition & 1 deletion Turbah/Views/View Controller/LocationsListMenu.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class LocationsListMenu: UITableView, UITableViewDelegate, UITableViewDataSource
dataSource = self
alwaysBounceVertical = false
verticalScrollIndicatorInsets = UIEdgeInsets(top: 7.5, left: 0, bottom: 7.5, right: 0)
backgroundColor = nil
backgroundColor = .clear
backgroundView = UIVisualEffectView(effect: blurEffect)
separatorEffect = UIVibrancyEffect(blurEffect: blurEffect, style: .separator)
separatorInset = .zero
Expand Down

0 comments on commit c202401

Please sign in to comment.