1

I have a problem with my buttons:

Buttons A and B look good with any connection (@IBOutlet):

enter image description here

Button B looks bad when is connected:

import Cocoa

class ButtonsC: NSViewController {

    @IBOutlet var b: NSButton!

    override func viewDidLoad() {
        super.viewDidLoad()
    }

}

enter image description here

and if I connect the button A, button B looks nice and A looks bad

import Cocoa

class ButtonsC: NSViewController {

    @IBOutlet var a: NSButton!
    @IBOutlet var b: NSButton!

    override func viewDidLoad() {
        super.viewDidLoad()
    }

}

enter image description here

How can I fix it? or what kind of code in my project may be causing that?

Geek20
  • 673
  • 1
  • 9
  • 18

0 Answers0