mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
gtkmm: use ALIGN_START instead of deprecated Gtk::AlignmentEnum::ALIGN_LEFT
This commit is contained in:
parent
1390743d52
commit
2aa72891f3
31 changed files with 123 additions and 123 deletions
|
|
@ -58,7 +58,7 @@ ExportDialog::ExportDialog (PublicEditor & editor, std::string title, ARDOUR::Ex
|
|||
: ArdourDialog (title)
|
||||
, type (type)
|
||||
, editor (editor)
|
||||
, warn_label ("", Gtk::ALIGN_LEFT)
|
||||
, warn_label ("", Gtk::ALIGN_START)
|
||||
, list_files_label (_("<span color=\"#ffa755\">Some already existing files will be overwritten.</span>"), Gtk::ALIGN_RIGHT)
|
||||
, list_files_button (_("List files"))
|
||||
, previous_progress (0)
|
||||
|
|
@ -327,7 +327,7 @@ ExportDialog::show_conflicting_files ()
|
|||
{
|
||||
ArdourDialog dialog (_("Files that will be overwritten"), true);
|
||||
|
||||
Gtk::Label label ("", Gtk::ALIGN_LEFT);
|
||||
Gtk::Label label ("", Gtk::ALIGN_START);
|
||||
label.set_use_markup (true);
|
||||
label.set_markup (list_files_string);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue