Skip to content

Commit 5fbf4a7

Browse files
committed
feat: log panel takes half screen instead of 2/5
Feat: change content/log split from flex 3:2 to flex 1:1 so the log sidebar always takes exactly half the terminal width.
1 parent 57af8e8 commit 5fbf4a7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/src/tui/app.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -704,13 +704,13 @@ class AppState extends State<CmdBridgeApp> {
704704

705705
return Row(
706706
children: [
707-
Expanded(flex: 3, child: Padding(
707+
Expanded(flex: 1, child: Padding(
708708
padding: const EdgeInsets.all(1),
709709
child: content,
710710
)),
711711
const SizedBox(width: 1),
712712
Expanded(
713-
flex: 2,
713+
flex: 1,
714714
child: Container(
715715
padding: const EdgeInsets.all(1),
716716
decoration: const BoxDecoration(

0 commit comments

Comments
 (0)