mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-06 03:32:09 +01:00
Change some magic numbers whose original use was no longer, and get rid of some no-longer-correct comments, for clarity.
This commit is contained in:
@@ -97,13 +97,14 @@ void SplashDialog::Populate( ShuttleGui & S )
|
||||
new wxStaticBitmap(S.GetParent(), -1,
|
||||
//*m_pLogo, //vvv theTheme.Bitmap(bmpAudacityLogoWithName),
|
||||
RescaledBitmap,
|
||||
wxDefaultPosition, wxSize(int(LOGOWITHNAME_WIDTH*fScale), int(LOGOWITHNAME_HEIGHT*fScale)));
|
||||
wxDefaultPosition,
|
||||
wxSize(int(LOGOWITHNAME_WIDTH*fScale), int(LOGOWITHNAME_HEIGHT*fScale)));
|
||||
|
||||
S.Prop(0).AddWindow( m_pIcon );
|
||||
|
||||
mpHtml = new LinkingHtmlWindow(S.GetParent(), -1,
|
||||
wxDefaultPosition,
|
||||
wxSize(LOGOWITHNAME_WIDTH, 280),
|
||||
wxSize(506, 280),
|
||||
wxHW_SCROLLBAR_AUTO | wxSUNKEN_BORDER );
|
||||
mpHtml->SetPage(HelpText( wxT("welcome") ));
|
||||
S.Prop(1).AddWindow( mpHtml, wxEXPAND );
|
||||
|
||||
Reference in New Issue
Block a user