diff options
author | 2019-01-21 19:07:42 +0530 | |
---|---|---|
committer | 2019-01-21 19:07:42 +0530 | |
commit | f6c9ce2d716f2f096be333bf5f1f1689a55f17b9 (patch) | |
tree | f26b1fc1becb0cbbccc725fce9a02308e5a22607 /WireGuard | |
parent | macOS: show icon for inactive state (diff) | |
download | wireguard-apple-f6c9ce2d716f2f096be333bf5f1f1689a55f17b9.tar.xz wireguard-apple-f6c9ce2d716f2f096be333bf5f1f1689a55f17b9.zip |
macOS: Simplify NSColor extension
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard')
-rw-r--r-- | WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift b/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift index 7f75839..4ca4f05 100644 --- a/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift +++ b/WireGuard/WireGuard/UI/macOS/NSColor+Hex.swift @@ -19,7 +19,7 @@ extension NSColor { var rgb: UInt32 = 0 Scanner(string: hexString).scanHexInt32(&rgb) - self.init(red: CGFloat((rgb & 0xFF0000) >> 16) / 255.0, green: CGFloat((rgb & 0x00FF00) >> 8) / 255.0, blue: CGFloat(rgb & 0x0000FF) / 255.0, alpha: 1) + self.init(red: CGFloat((rgb >> 16) & 0xff) / 255.0, green: CGFloat((rgb >> 8) & 0xff) / 255.0, blue: CGFloat((rgb >> 0) & 0xff) / 255.0, alpha: 1) } } |