tweak: allow overlay to grow to 400px then scroll

This commit is contained in:
Peter Steinberger
2025-12-08 18:33:14 +01:00
parent cf3b7f2c16
commit a19d4c19d3

View File

@@ -209,7 +209,7 @@ final class VoiceWakeOverlayController: ObservableObject {
let contentHeight = ceil(used.height + (textInset.height * 2)) let contentHeight = ceil(used.height + (textInset.height * 2))
let total = contentHeight + self.verticalPadding * 2 let total = contentHeight + self.verticalPadding * 2
return max(48, min(total, 220)) return max(48, min(total, 400))
} }
private func dismissTargetFrame(for frame: NSRect, reason: DismissReason, outcome: SendOutcome) -> NSRect? { private func dismissTargetFrame(for frame: NSRect, reason: DismissReason, outcome: SendOutcome) -> NSRect? {
@@ -354,7 +354,7 @@ private struct TranscriptTextView: NSViewRepresentable {
let scroll = NSScrollView() let scroll = NSScrollView()
scroll.drawsBackground = false scroll.drawsBackground = false
scroll.borderType = .noBorder scroll.borderType = .noBorder
scroll.hasVerticalScroller = false scroll.hasVerticalScroller = true
scroll.hasHorizontalScroller = false scroll.hasHorizontalScroller = false
scroll.documentView = textView scroll.documentView = textView
return scroll return scroll