Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/SwiftTerm/Apple/AppleTerminalView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct ViewLineInfo {
}

extension TerminalView {
typealias CellDimension = CGSize
public typealias CellDimension = CGSize

func resetCaches ()
{
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftTerm/BufferLine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public final class BufferLine: CustomDebugStringConvertible {
/// Renders the bottom of a character, using two cells
case doubledDown
}
var isWrapped: Bool
public var isWrapped: Bool
var renderMode: RenderLineMode = .single
private var data: UnsafeMutableBufferPointer<CharData>
private var dataSize: Int
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftTerm/iOS/iOSTerminalView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ open class TerminalView: UIScrollView, UITextInputTraits, UIKeyInput, UIScrollVi
var search: SearchService!
var debug: UIView?
var pendingDisplay: Bool = false
var cellDimension: CellDimension!
public var cellDimension: CellDimension!
var caretView: CaretView?
var terminal: Terminal!
private var progressBarView: TerminalProgressBarView?
Expand Down