X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsave_as_dialog.cc;h=9c8d3cb73482e76a2900cbcc247b8762725db642;hb=bdfddec6fc45b9570d1f3fc03182f4166187c52c;hp=bb4f3de2c8623e2b9bd70a1b7ea575e7ada90016;hpb=e64e4e19bc3e44c3e087de6bfc3f1cf4f6e1fabc;p=ardour.git diff --git a/gtk2_ardour/save_as_dialog.cc b/gtk2_ardour/save_as_dialog.cc index bb4f3de2c8..9c8d3cb734 100644 --- a/gtk2_ardour/save_as_dialog.cc +++ b/gtk2_ardour/save_as_dialog.cc @@ -39,7 +39,7 @@ SaveAsDialog::SaveAsDialog () VBox* vbox = get_vbox(); vbox->set_spacing (6); - + HBox* hbox; Label* label; @@ -62,7 +62,7 @@ SaveAsDialog::SaveAsDialog () VBox* sub_vbox = manage (new VBox); HBox* sub_hbox = manage (new HBox); HBox* empty = manage (new HBox); - + sub_vbox->pack_start (copy_media_button, false, false); sub_vbox->pack_start (copy_external_button, false, false); @@ -73,17 +73,17 @@ SaveAsDialog::SaveAsDialog () vbox->pack_start (no_include_media_button, false, false); vbox->pack_start (*sub_hbox, false, false); - + switch_to_button.set_active (true); copy_media_button.set_active (true); - + vbox->show_all (); add_button (Stock::CANCEL, RESPONSE_CANCEL); add_button (Stock::OK, RESPONSE_OK); no_include_media_button.signal_toggled ().connect (sigc::mem_fun (*this, &SaveAsDialog::no_include_toggled)); - + new_parent_folder_selector.set_action (FILE_CHOOSER_ACTION_SELECT_FOLDER); new_parent_folder_selector.set_current_folder (Glib::get_home_dir()); // Why $HOME and not poor_mans_glob (Config->get_default_session_parent_dir ()) ?? new_name_entry.signal_changed().connect (sigc::mem_fun (*this, &SaveAsDialog::name_entry_changed));