From 00d34f864b34c535ff36c5f3789d43c8ae40d543 Mon Sep 17 00:00:00 2001 From: Mikei386 <44135113+Mikei386@users.noreply.github.com> Date: Thu, 4 Jun 2026 11:17:04 +0200 Subject: [PATCH] Make review and log panes resizable --- Sources/GrowthLapse/ContentView.swift | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Sources/GrowthLapse/ContentView.swift b/Sources/GrowthLapse/ContentView.swift index bc172e1..3885565 100644 --- a/Sources/GrowthLapse/ContentView.swift +++ b/Sources/GrowthLapse/ContentView.swift @@ -231,10 +231,17 @@ struct ContentView: View { .progressViewStyle(.linear) if let project = processor.project { - projectReviewPanel(project) - } + VSplitView { + projectReviewPanel(project) + .frame(minHeight: 260) - logView + logView + .frame(minHeight: 160) + } + } + else { + logView + } } .padding() .frame(minWidth: 520)