mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Increase max export channel count to 32 for default export
Stem Export is not affected. This limitation is only for the channel matrix GUI, when assigning master-bus channels to export channels.
This commit is contained in:
parent
3318758855
commit
82d7d85192
1 changed files with 3 additions and 1 deletions
|
|
@ -48,11 +48,13 @@ using namespace Glib;
|
||||||
using namespace ARDOUR;
|
using namespace ARDOUR;
|
||||||
using namespace PBD;
|
using namespace PBD;
|
||||||
|
|
||||||
|
#define MAX_EXPORT_CHANNELS 32
|
||||||
|
|
||||||
PortExportChannelSelector::PortExportChannelSelector (ARDOUR::Session * session, ProfileManagerPtr manager) :
|
PortExportChannelSelector::PortExportChannelSelector (ARDOUR::Session * session, ProfileManagerPtr manager) :
|
||||||
ExportChannelSelector (session, manager),
|
ExportChannelSelector (session, manager),
|
||||||
channels_label (_("Channels:"), Gtk::ALIGN_LEFT),
|
channels_label (_("Channels:"), Gtk::ALIGN_LEFT),
|
||||||
split_checkbox (_("Split to mono files")),
|
split_checkbox (_("Split to mono files")),
|
||||||
max_channels (20),
|
max_channels (MAX_EXPORT_CHANNELS),
|
||||||
channel_view (max_channels)
|
channel_view (max_channels)
|
||||||
{
|
{
|
||||||
channels_hbox.pack_start (channels_label, false, false, 0);
|
channels_hbox.pack_start (channels_label, false, false, 0);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue