From 4e57f272a10425f315cedb431a5b13b5e89f4f68 Mon Sep 17 00:00:00 2001 From: EinTim23 Date: Sat, 10 May 2025 21:47:32 +0200 Subject: [PATCH] removed unnecessary padding from processBox --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index b87a821..5cb5cee 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -286,7 +286,7 @@ public: addSizer->Add(addButton, 0, wxALL, 5); addSizer->Add(removeButton, 0, wxALL, 5); processBox->Add(addSizer, 0, wxEXPAND); - mainSizer->Add(processBox, 1, wxALL | wxEXPAND, 5); + mainSizer->Add(processBox, 1, wxALL | wxEXPAND); SetSizerAndFit(mainSizer); Centre();