mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Distinguish Save-as and Snapshot dialog window
This commit is contained in:
parent
2eb79acefd
commit
c1e8da2e60
1 changed files with 7 additions and 2 deletions
|
|
@ -2190,8 +2190,13 @@ ARDOUR_UI::snapshot_session (bool switch_to_it)
|
|||
|
||||
prompter.set_name ("Prompter");
|
||||
prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
|
||||
prompter.set_title (_("Take Snapshot"));
|
||||
prompter.set_prompt (_("Name of new snapshot"));
|
||||
if (switch_to_it) {
|
||||
prompter.set_title (_("Save as..."));
|
||||
prompter.set_prompt (_("New session name"));
|
||||
} else {
|
||||
prompter.set_title (_("Take Snapshot"));
|
||||
prompter.set_prompt (_("Name of new snapshot"));
|
||||
}
|
||||
|
||||
if (!switch_to_it) {
|
||||
char timebuf[128];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue