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 1e55b9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ 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
Expand Down

0 comments on commit 1e55b9c

Please sign in to comment.