From b9b4618c8e82c7e46716a4f33c0c3cd1afb5e638 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 17 Dec 2020 00:23:31 +0000 Subject: [PATCH] Take a stab at fixing the GTK severity heading clipping issue. Fixes https://gitlab.com/kicad/code/kicad/issues/6766 --- common/dialogs/panel_setup_severities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/dialogs/panel_setup_severities.cpp b/common/dialogs/panel_setup_severities.cpp index a950e77f58..774ee1cab3 100644 --- a/common/dialogs/panel_setup_severities.cpp +++ b/common/dialogs/panel_setup_severities.cpp @@ -69,7 +69,7 @@ PANEL_SETUP_SEVERITIES::PANEL_SETUP_SEVERITIES( PAGED_DIALOG* aParent, gridSizer->AddSpacer( 5 ); // col 1 gridSizer->AddSpacer( 5 ); // col 2 - gridSizer->Add( heading, 0, wxALIGN_BOTTOM | wxALL, 4 ); + gridSizer->Add( heading, 0, wxALIGN_BOTTOM | wxALL | wxEXPAND, 4 ); gridSizer->AddSpacer( 0 ); // col 2 } else if( !msg.IsEmpty() ) // items with no message are for internal use only