Skip to content

Commit

Permalink
fix open url
Browse files Browse the repository at this point in the history
  • Loading branch information
MrWoWander committed Jun 1, 2021
1 parent b385ccb commit 19986f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Down-Example/Down-SwiftUI-Example/DownAttributedString.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ struct MarkdownRepresentable: UIViewRepresentable {
func makeUIView(context: Context) -> UITextView {
markdownObject.textView.textAlignment = .left
markdownObject.textView.isScrollEnabled = false
markdownObject.textView.isUserInteractionEnabled = false
markdownObject.textView.isUserInteractionEnabled = true
markdownObject.textView.showsVerticalScrollIndicator = false
markdownObject.textView.showsHorizontalScrollIndicator = false
markdownObject.textView.allowsEditingTextAttributes = false
markdownObject.textView.isEditable = false
markdownObject.textView.backgroundColor = .clear

markdownObject.textView.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
Expand Down

0 comments on commit 19986f4

Please sign in to comment.