Skip to content

Commit

Permalink
Adds missing alpha fix
Browse files Browse the repository at this point in the history
  • Loading branch information
superhighfives committed Nov 28, 2024
1 parent 4fee5b6 commit 19a46ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pika/Utilities/Eyedroppers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ class Eyedropper: ObservableObject {

func picker() {
let panel = NSColorPanel.shared
panel.showsAlpha = false
panel.title = "\(type.rawValue.capitalized)"
panel.titleVisibility = .visible
panel.setTarget(self)
panel.color = color
panel.showsAlpha = true
panel.orderFrontRegardless()
panel.setAction(#selector(colorDidChange))
panel.isContinuous = true
Expand Down

0 comments on commit 19a46ba

Please sign in to comment.