1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-06 06:31:07 +01:00

ShuttleGui lets you specify whether a button is default. Use that.

This commit is contained in:
Paul Licameli
2019-11-19 11:33:37 -05:00
parent cd4266792a
commit bca0afd52e
9 changed files with 32 additions and 18 deletions

View File

@@ -140,10 +140,11 @@ void SplashDialog::Populate( ShuttleGui & S )
{
S.SetBorder( 5 );
S.Id( DontShowID).AddCheckBox( _("Don't show this again at start up"), !bShow );
wxButton *ok = safenew wxButton(S.GetParent(), wxID_OK);
ok->SetDefault();
S.SetBorder( 5 );
S.Prop(0).AddWindow( ok, wxALIGN_RIGHT| wxALL );
S.Id(wxID_OK)
.Prop(0)
.AddButton(_("OK"), wxALIGN_RIGHT| wxALL, true);
}
S.EndVerticalLay();
}