mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
make minor version label invisible on update
This commit is contained in:
parent
3f8cdd994a
commit
0f179dad45
2 changed files with 4 additions and 1 deletions
|
@ -64,7 +64,7 @@ void Loader::Impl::openPlatformConsole() {
|
|||
dup2(outFd, 1);
|
||||
dup2(outFd, 2);
|
||||
|
||||
NSTask *task = [[NSTask alloc] init];
|
||||
NSTask* task = [[NSTask alloc] init];
|
||||
task.launchPath = @"/usr/bin/open";
|
||||
task.arguments = @[[NSString stringWithUTF8String:script.c_str()]];
|
||||
[task launch];
|
||||
|
|
|
@ -353,6 +353,9 @@ void ModInfoPopup::preInstall() {
|
|||
if (m_latestVersionLabel) {
|
||||
m_latestVersionLabel->setVisible(false);
|
||||
}
|
||||
if (m_minorVersionLabel) {
|
||||
m_minorVersionLabel->setVisible(false);
|
||||
}
|
||||
this->setInstallStatus(UpdateProgress(0, "Starting install"));
|
||||
|
||||
m_installBtn->setTarget(
|
||||
|
|
Loading…
Reference in a new issue