We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 180bde0 commit 60e6ba6Copy full SHA for 60e6ba6
1 file changed
Sources/CodeEditor/UXCodeTextViewRepresentable.swift
@@ -3,7 +3,7 @@
3
// CodeEditor
4
//
5
// Created by Helge Heß.
6
-// Copyright © 2021 ZeeZide GmbH. All rights reserved.
+// Copyright © 2021-2023 ZeeZide GmbH. All rights reserved.
7
8
9
import SwiftUI
@@ -56,15 +56,15 @@ struct UXCodeTextViewRepresentable : UXViewRepresentable {
56
autoscroll : Bool)
57
{
58
self.source = source
59
- self.selection = selection
+ self.selection = selection
60
self.fontSize = fontSize
61
self.language = language
62
self.themeName = theme
63
self.flags = flags
64
self.indentStyle = indentStyle
65
self.autoPairs = autoPairs
66
self.inset = inset
67
- self.autoscroll = autoscroll
+ self.autoscroll = autoscroll
68
}
69
70
private var source : Binding<String>
0 commit comments