mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Modify playlist option labels in Duplicate Track/Bus dialog
To indicate it is only copying the current "active" playlist and not all playlists as discussed on IRC some time ago. Resolves: #7149
This commit is contained in:
parent
d42202dfca
commit
05c2e4ef9b
2 changed files with 9 additions and 3 deletions
|
|
@ -34,9 +34,10 @@ using namespace Gtk;
|
||||||
|
|
||||||
DuplicateRouteDialog::DuplicateRouteDialog ()
|
DuplicateRouteDialog::DuplicateRouteDialog ()
|
||||||
: ArdourDialog (_("Duplicate Tracks & Busses"), false, false)
|
: ArdourDialog (_("Duplicate Tracks & Busses"), false, false)
|
||||||
, copy_playlists_button (playlist_button_group, _("Copy playlists"))
|
, playlist_option_label (_("For each Track:"))
|
||||||
, new_playlists_button (playlist_button_group, _("Create new (empty) playlists"))
|
, copy_playlists_button (playlist_button_group, _("Copy playlist"))
|
||||||
, share_playlists_button (playlist_button_group, _("Share playlists"))
|
, new_playlists_button (playlist_button_group, _("New playlist"))
|
||||||
|
, share_playlists_button (playlist_button_group, _("Share playlist"))
|
||||||
, count_adjustment (1.0, 1.0, 999, 1.0, 10.0)
|
, count_adjustment (1.0, 1.0, 999, 1.0, 10.0)
|
||||||
, count_spinner (count_adjustment)
|
, count_spinner (count_adjustment)
|
||||||
, count_label (_("Duplicate each track/bus this number of times:"))
|
, count_label (_("Duplicate each track/bus this number of times:"))
|
||||||
|
|
@ -45,6 +46,10 @@ DuplicateRouteDialog::DuplicateRouteDialog ()
|
||||||
count_box.pack_start (count_spinner, false, false, 5);
|
count_box.pack_start (count_spinner, false, false, 5);
|
||||||
get_vbox()->pack_start (count_box, false, false, 10);
|
get_vbox()->pack_start (count_box, false, false, 10);
|
||||||
|
|
||||||
|
Gtk::HBox* hb = manage (new HBox);
|
||||||
|
hb->pack_start (playlist_option_label, false, false);
|
||||||
|
get_vbox()->pack_start (*hb, false, false, 10);
|
||||||
|
|
||||||
playlist_button_box.pack_start (copy_playlists_button, false, false);
|
playlist_button_box.pack_start (copy_playlists_button, false, false);
|
||||||
playlist_button_box.pack_start (new_playlists_button, false, false);
|
playlist_button_box.pack_start (new_playlists_button, false, false);
|
||||||
playlist_button_box.pack_start (share_playlists_button, false, false);
|
playlist_button_box.pack_start (share_playlists_button, false, false);
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,7 @@ class DuplicateRouteDialog : public ArdourDialog
|
||||||
private:
|
private:
|
||||||
Gtk::Entry name_template_entry;
|
Gtk::Entry name_template_entry;
|
||||||
Gtk::VBox playlist_button_box;
|
Gtk::VBox playlist_button_box;
|
||||||
|
Gtk::Label playlist_option_label;
|
||||||
Gtk::RadioButtonGroup playlist_button_group;
|
Gtk::RadioButtonGroup playlist_button_group;
|
||||||
Gtk::RadioButton copy_playlists_button;
|
Gtk::RadioButton copy_playlists_button;
|
||||||
Gtk::RadioButton new_playlists_button;
|
Gtk::RadioButton new_playlists_button;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue