Fix path for logo and icon.

This commit is contained in:
apoorv569 2021-03-20 20:41:29 +05:30
parent 665e36c030
commit bde89394f3
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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);
}