removed unnecessary padding from processBox

This commit is contained in:
EinTim23 2025-05-10 21:47:32 +02:00
parent 7fc1ac5d5d
commit 4e57f272a1
1 changed files with 1 additions and 1 deletions

View File

@ -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();