Fix path for logo and icon.
This commit is contained in:
parent
665e36c030
commit
bde89394f3
|
|
@ -26,7 +26,7 @@ bool App::OnInit()
|
|||
wxBitmap bitmap;
|
||||
wxSplashScreen* splash;
|
||||
|
||||
if (bitmap.LoadFile("../assets/Logo/logo-hive_768x432.png", wxBITMAP_TYPE_PNG))
|
||||
if (bitmap.LoadFile("../assets/logo/logo-hive_768x432.png", wxBITMAP_TYPE_PNG))
|
||||
{
|
||||
splash = new wxSplashScreen(bitmap,
|
||||
wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_TIMEOUT,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ MainFrame::MainFrame(): wxFrame(NULL, wxID_ANY, "Sample Hive", wxDefaultPosition
|
|||
this->SetSize(width, height);
|
||||
this->Center(wxBOTH);
|
||||
this->CenterOnScreen(wxBOTH);
|
||||
this->SetIcon(wxIcon("../assets/Icons/icon-hive_24x24.png", wxICON_DEFAULT_TYPE, -1, -1));
|
||||
this->SetIcon(wxIcon("../assets/icons/icon-hive_24x24.png", wxICON_DEFAULT_TYPE, -1, -1));
|
||||
|
||||
m_Browser = new Browser(this);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue