Skip to content

Commit

Permalink
Fix horizontal scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
iandundas committed Jan 12, 2023
1 parent 45cba8b commit cff4945
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/CTR/Interface/Common/ScrolledStackView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class ScrolledStackView: BaseView {

// Content view
scrollViewContent.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor, constant: stackViewInset.left),
scrollViewContent.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor, constant: -stackViewInset.right),
scrollViewContent.topAnchor.constraint(equalTo: scrollView.topAnchor, constant: stackViewInset.top),
scrollViewContent.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor, constant: -stackViewInset.bottom),
scrollViewContent.widthAnchor.constraint(equalTo: scrollView.widthAnchor, constant: -stackViewInset.left - stackViewInset.right),
Expand Down

0 comments on commit cff4945

Please sign in to comment.