Make Enter give RESPONSE_ACCEPT in the normalize dialogue (#3937).
authorCarl Hetherington <carl@carlh.net>
Tue, 5 Apr 2011 10:34:33 +0000 (10:34 +0000)
committerCarl Hetherington <carl@carlh.net>
Tue, 5 Apr 2011 10:34:33 +0000 (10:34 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@9293 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/normalize_dialog.cc

index 12cc84a7f161efa04685c81e03e1d2a066018d39..28742931e9413578729e52da9c957a1e51ac08aa 100644 (file)
@@ -43,6 +43,7 @@ NormalizeDialog::NormalizeDialog (bool more_than_one)
        _spin->set_range (-112, 0);
        _spin->set_increments (0.1, 1);
        _spin->set_value (_last_normalization_value);
+       _spin->set_activates_default ();
        hbox->pack_start (*_spin, false, false);
        hbox->pack_start (*manage (new Label (_("dbFS"))), false, false);
        get_vbox()->pack_start (*hbox);
@@ -69,6 +70,7 @@ NormalizeDialog::NormalizeDialog (bool more_than_one)
        
        add_button (Stock::CANCEL, RESPONSE_CANCEL);
        add_button (_("Normalize"), RESPONSE_ACCEPT);
+       set_default_response (RESPONSE_ACCEPT);
 
        signal_response().connect (sigc::mem_fun (*this, &NormalizeDialog::button_clicked));
 }