From ae961a86a7368521e667920b081aaf80fdcf2945 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sat, 17 Oct 2020 20:43:20 +0200 Subject: [PATCH] Fixed layout to expand and fill out --- source/gui.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/gui.d b/source/gui.d index efab619..7419c0f 100644 --- a/source/gui.d +++ b/source/gui.d @@ -97,9 +97,10 @@ public class GUI : Thread box.add(notebook); statusBar = new Statusbar(); statusBar.add(new Label("Gustav: Bruh")); + box.setChildPacking(notebook, true, true, 0, GtkPackType.START); box.packEnd(statusBar, 0, 0, 0); //notebook.add(createServerTab()); - +