From e17e5a2fdaa183a89a822015f1115f281ae9a5ef Mon Sep 17 00:00:00 2001 From: Oleg Samarin Date: Thu, 27 Oct 2022 22:17:48 +0300 Subject: [PATCH] Fixed displaying audio ports on OSx https://github.com/GrandOrgue/grandorgue/issues/1216 --- CHANGELOG.md | 1 + src/grandorgue/dialogs/settings/GOSettingsPorts.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 791675800..7b55a6243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- Fixed displaying audio ports on OSx https://github.com/GrandOrgue/grandorgue/issues/1216 - Added divisional combination banks https://github.com/GrandOrgue/grandorgue/issues/708 - Renamed audio ports: Pa to PortAudio and Rt to RtAudio https://github.com/GrandOrgue/grandorgue/issues/1216 - Fixed size of the Organ Selection Dialog https://github.com/GrandOrgue/grandorgue/issues/1215 diff --git a/src/grandorgue/dialogs/settings/GOSettingsPorts.cpp b/src/grandorgue/dialogs/settings/GOSettingsPorts.cpp index 6d1436cca..fe0a0ed9b 100644 --- a/src/grandorgue/dialogs/settings/GOSettingsPorts.cpp +++ b/src/grandorgue/dialogs/settings/GOSettingsPorts.cpp @@ -77,6 +77,7 @@ GOSettingsPorts::GOSettingsPorts( wxDefaultSize, wxTL_SINGLE | wxTL_CHECKBOX | wxTL_NO_HEADER); m_Ports->AppendColumn(wxEmptyString); + m_Ports->SetColumnWidth(0, 200); m_Ports->Bind( wxEVT_TREELIST_ITEM_CHECKED, &GOSettingsPorts::OnPortItemChecked, this); m_PortsSizer->Add(m_Ports, 1, wxEXPAND);