summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-12-07 22:44:59 +0100
committerCarl Hetherington <cth@carlh.net>2022-01-18 22:37:08 +0100
commit9bc077322d49107fc464f4cfd2d66e9c2860f0a3 (patch)
tree1cb5b3bcc9c2a26e8e5d196a33761b48710c8256
parenta4e27b8ddbd4dfa99f40df205b51bfe393ca3ced (diff)
Shrink size of audio map.
-rw-r--r--src/wx/config_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index 396691751..514a6cde6 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -897,7 +897,7 @@ SoundPage::setup ()
add_label_to_sizer (table, _panel, _("Mapping"), true, wxGBPosition(r, 0));
_map = new AudioMappingView (_panel, _("DCP"), _("DCP"), _("Output"), _("output"));
- _map->SetSize (-1, 600);
+ _map->SetSize (-1, 400);
table->Add (_map, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
++r;