Skip to content

Commit

Permalink
fixed broken build because of missing UIColor (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: Stefan Haider <[email protected]>
  • Loading branch information
stfnhdr and Stefan Haider authored Sep 27, 2021
1 parent bcb649a commit beede2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import UIKit
public struct TouchVisualiserConfiguration {
// MARK: - Data
/// Color to be used for touch indicators
public var touchIndicatorColor: UIColor = .systemGray.withAlphaComponent(0.7)
public var touchIndicatorColor: UIColor = UIColor.systemGray.withAlphaComponent(0.7)

/// Image to be used for touch indicators. If not nil, this will replace color based touch indicators.
public var touchIndicatorImage: UIImage? {
Expand Down

0 comments on commit beede2e

Please sign in to comment.