From 02a20fd78e9471d408b02bb7141155cd4d7bbe38 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Sat, 3 Jan 2026 04:24:55 +0300 Subject: [PATCH] Vertically center multichannel repeat layout grid cells. --- pcbnew/dialogs/dialog_multichannel_repeat_layout_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/dialogs/dialog_multichannel_repeat_layout_base.cpp b/pcbnew/dialogs/dialog_multichannel_repeat_layout_base.cpp index 015c08aab4..5d6763dbcf 100644 --- a/pcbnew/dialogs/dialog_multichannel_repeat_layout_base.cpp +++ b/pcbnew/dialogs/dialog_multichannel_repeat_layout_base.cpp @@ -89,7 +89,7 @@ DIALOG_MULTICHANNEL_REPEAT_LAYOUT_BASE::DIALOG_MULTICHANNEL_REPEAT_LAYOUT_BASE( // Label Appearance // Cell Defaults - m_raGrid->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_TOP ); + m_raGrid->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_CENTER ); m_raGrid->SetMinSize( wxSize( 500,100 ) ); fgSizer3->Add( m_raGrid, 1, wxALL|wxEXPAND, 5 );