mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 07:06:23 +01:00
Render waveview components onto alpha masks to simplify drawing.
Reduce user panic by removing ! from missing file dialog title. Use justify left in missing file dialog.
This commit is contained in:
parent
2a414a3868
commit
baf6a43ee7
3 changed files with 150 additions and 120 deletions
|
|
@ -32,7 +32,7 @@ using namespace ARDOUR;
|
|||
using namespace PBD;
|
||||
|
||||
MissingFileDialog::MissingFileDialog (Session* s, const std::string& path, DataType type)
|
||||
: ArdourDialog (_("Missing File!"), true, false)
|
||||
: ArdourDialog (_("Missing File"), true, false)
|
||||
, filetype (type)
|
||||
, chooser (_("Select a folder to search"), FILE_CHOOSER_ACTION_SELECT_FOLDER)
|
||||
, use_chosen (_("Add chosen folder to search path, and try again"))
|
||||
|
|
@ -66,7 +66,7 @@ MissingFileDialog::MissingFileDialog (Session* s, const std::string& path, DataT
|
|||
oss << *i << endl;
|
||||
}
|
||||
|
||||
msg.set_justify (JUSTIFY_CENTER);
|
||||
msg.set_justify (JUSTIFY_LEFT);
|
||||
msg.set_markup (string_compose (_("%1 cannot find the %2 file\n\n<i>%3</i>\n\nin any of these folders:\n\n\
|
||||
<tt>%4</tt>\n\n"), PROGRAM_NAME, typestr, Glib::Markup::escape_text(path), Glib::Markup::escape_text (oss.str())));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue