Skip to content

Commit

Permalink
Fix of Edit button not showing right and bottom borders on TunnelDeta…
Browse files Browse the repository at this point in the history
…ilView
  • Loading branch information
sebastianlivoni committed Jul 1, 2023
1 parent 2fec12a commit 0e20f82
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ class TunnelDetailTableViewController: NSViewController {
bottomControlsContainer.heightAnchor.constraint(equalToConstant: 32),
scrollView.bottomAnchor.constraint(equalTo: bottomControlsContainer.topAnchor),
bottomControlsContainer.bottomAnchor.constraint(equalTo: containerView.bottomAnchor),
editButton.trailingAnchor.constraint(equalTo: bottomControlsContainer.trailingAnchor),
bottomControlsContainer.bottomAnchor.constraint(equalTo: editButton.bottomAnchor, constant: 0)
editButton.trailingAnchor.constraint(equalTo: bottomControlsContainer.trailingAnchor, constant: -1),
bottomControlsContainer.bottomAnchor.constraint(equalTo: editButton.bottomAnchor, constant: 1)
])

NSLayoutConstraint.activate([
Expand Down

0 comments on commit 0e20f82

Please sign in to comment.