mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-16 17:37:03 +00:00
Update specter
This commit is contained in:
@@ -33,7 +33,7 @@ class SplashScreen : public Specter::ModalWindow
|
|||||||
const char* help() const {return "Creates an empty project at selected path";}
|
const char* help() const {return "Creates an empty project at selected path";}
|
||||||
void activated(const boo::SWindowCoord& coord)
|
void activated(const boo::SWindowCoord& coord)
|
||||||
{
|
{
|
||||||
m_splash.m_fileBrowser.m_view.reset(new Specter::FileBrowser(m_splash.rootView().viewRes(), m_splash));
|
m_splash.m_fileBrowser.m_view.reset(new Specter::FileBrowser(m_splash.rootView().viewRes(), m_splash, "New Project"));
|
||||||
m_splash.updateSize();
|
m_splash.updateSize();
|
||||||
m_splash.m_newButt.mouseLeave(coord);
|
m_splash.m_newButt.mouseLeave(coord);
|
||||||
}
|
}
|
||||||
@@ -47,7 +47,7 @@ class SplashScreen : public Specter::ModalWindow
|
|||||||
const char* help() const {return "Opens an existing project at selected path";}
|
const char* help() const {return "Opens an existing project at selected path";}
|
||||||
void activated(const boo::SWindowCoord& coord)
|
void activated(const boo::SWindowCoord& coord)
|
||||||
{
|
{
|
||||||
m_splash.m_fileBrowser.m_view.reset(new Specter::FileBrowser(m_splash.rootView().viewRes(), m_splash));
|
m_splash.m_fileBrowser.m_view.reset(new Specter::FileBrowser(m_splash.rootView().viewRes(), m_splash, "Open Project"));
|
||||||
m_splash.updateSize();
|
m_splash.updateSize();
|
||||||
m_splash.m_openButt.mouseLeave(coord);
|
m_splash.m_openButt.mouseLeave(coord);
|
||||||
}
|
}
|
||||||
@@ -61,7 +61,7 @@ class SplashScreen : public Specter::ModalWindow
|
|||||||
const char* help() const {return "Extracts game image as project at selected path";}
|
const char* help() const {return "Extracts game image as project at selected path";}
|
||||||
void activated(const boo::SWindowCoord& coord)
|
void activated(const boo::SWindowCoord& coord)
|
||||||
{
|
{
|
||||||
m_splash.m_fileBrowser.m_view.reset(new Specter::FileBrowser(m_splash.rootView().viewRes(), m_splash));
|
m_splash.m_fileBrowser.m_view.reset(new Specter::FileBrowser(m_splash.rootView().viewRes(), m_splash, "Extract Game"));
|
||||||
m_splash.updateSize();
|
m_splash.updateSize();
|
||||||
m_splash.m_extractButt.mouseLeave(coord);
|
m_splash.m_extractButt.mouseLeave(coord);
|
||||||
}
|
}
|
||||||
|
|||||||
Submodule libSpecter updated: e11d972cf1...66bb135fbb
Reference in New Issue
Block a user