mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-27 07:28:17 +01:00
fix export file path initialization
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6479 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e78cd3add8
commit
d4f376779d
1 changed files with 9 additions and 0 deletions
|
|
@ -488,6 +488,15 @@ ExportDialog::set_state()
|
|||
channels_chosen();
|
||||
sample_rate_chosen();
|
||||
|
||||
//header_chosen initializes the file_entry text. we need to clear it so it will be set to the default, and/or recover the val that was stored in instant.xml
|
||||
file_entry.set_text("");
|
||||
if (node) {
|
||||
if ((prop = node->property (X_("filename"))) != 0) {
|
||||
file_entry.set_text(prop->value());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (session->master_out()) {
|
||||
track_scroll.hide ();
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue