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)