Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- A new database group now appears in the connection list right away instead of only after restarting the app. (#1704)
- The SQL formatter keeps nested indentation for UNION, UNION ALL, INTERSECT, and EXCEPT inside a derived table or CTE, and puts the closing parenthesis of a subquery on its own line instead of collapsing it onto the last SELECT. (#1698)
- Toolbar button tooltips now show each action's real keyboard shortcut and follow your custom bindings, instead of a fixed value. The Switch Connection tooltip showed the wrong shortcut. (#1694)
- The row detail panel no longer stays blank when a table is opened in a second tab. The panel now shows the selected row right away instead of only after the inspector is toggled.

## [0.51.1] - 2026-06-16

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,14 @@ internal final class MainSplitViewController: NSSplitViewController, InspectorVi
splitView.dividerStyle = .thin
splitView.isVertical = true

sidebarContainer = SidebarContainerViewController(rootView: AnyView(buildSidebarView()))
sidebarContainer = SidebarContainerViewController(rootView: AnyView(Color.clear))
sidebarSplitItem = NSSplitViewItem(sidebarWithViewController: sidebarContainer)
sidebarSplitItem.canCollapse = true
sidebarSplitItem.minimumThickness = Self.sidebarMinThickness
sidebarSplitItem.maximumThickness = Self.sidebarMaxThickness
addSplitViewItem(sidebarSplitItem)

detailHosting = NSHostingController(rootView: AnyView(buildDetailView()))
detailHosting = NSHostingController(rootView: AnyView(Color.clear))
detailSplitItem = NSSplitViewItem(viewController: detailHosting)
detailSplitItem.minimumThickness = Self.detailMinThickness
detailSplitItem.holdingPriority = .defaultLow
Expand All @@ -216,12 +216,7 @@ internal final class MainSplitViewController: NSSplitViewController, InspectorVi
splitView.autosaveName = splitAutosaveName
applyDefaultCollapseStateIfNoAutosave()

if let session = currentSession, session.driver != nil, let coordinator = sessionState?.coordinator {
sidebarContainer.updateSidebarState(
SharedSidebarState.forConnection(session.connection.id),
windowState: coordinator.windowSidebarState
)
}
rebuildPanes()
}

override func splitViewDidResizeSubviews(_ notification: Notification) {
Expand Down
Loading