Skip to content

Commit

Permalink
Fix copy/paste mistake 😱
Browse files Browse the repository at this point in the history
  • Loading branch information
glouel committed Oct 30, 2018
1 parent a39823c commit 9b754ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Aerial/Source/Views/AerialView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ class AerialView: ScreenSaverView {
// Add a bit of shadow to give an outline and better readability
clockLayer.shadowRadius = 10
clockLayer.shadowOpacity = 1.0
textLayer.shadowColor = CGColor.black
clockLayer.shadowColor = CGColor.black
//clockLayer.contentsScale = 1.0 // NSScreen.main?.backingScaleFactor ?? 1.0
layer.addSublayer(clockLayer)

Expand All @@ -344,7 +344,7 @@ class AerialView: ScreenSaverView {
// Add a bit of shadow to give an outline and better readability
messageLayer.shadowRadius = 10
messageLayer.shadowOpacity = 1.0
textLayer.shadowColor = CGColor.black
messageLayer.shadowColor = CGColor.black
//messageLayer.contentsScale = 1.0 // NSScreen.main?.backingScaleFactor ?? 1.0
layer.addSublayer(messageLayer)

Expand Down

0 comments on commit 9b754ab

Please sign in to comment.