Skip to content

Commit 8a4fcac

Browse files
committed
fix bug
1 parent e866290 commit 8a4fcac

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

singularity/NewUI/Panel/ResultsTimelineView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ private struct ResultsTranscriptListView: View {
11841184
.clipShape(RoundedRectangle(cornerRadius: 6))
11851185
.contentShape(Rectangle())
11861186
.help(url.path)
1187-
.onTapGesture { model.openPreviewURL(url) }
1187+
.onTapGesture { model.internalBrowserURL = url }
11881188
.contextMenu {
11891189
Button("Reveal in Finder") { NSWorkspace.shared.activateFileViewerSelecting([url]) }
11901190
Button("Open in Browser") { NSWorkspace.shared.open(url) }

singularity/PanelView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4443,7 +4443,7 @@ private struct TranscriptListView: View {
44434443
.clipShape(RoundedRectangle(cornerRadius: 6))
44444444
.contentShape(Rectangle())
44454445
.help(url.path)
4446-
.onTapGesture { model.openPreviewURL(url) }
4446+
.onTapGesture { model.internalBrowserURL = url }
44474447
.contextMenu {
44484448
Button("Reveal in Finder") { NSWorkspace.shared.activateFileViewerSelecting([url]) }
44494449
Button("Open in Browser") { NSWorkspace.shared.open(url) }

0 commit comments

Comments
 (0)