GH-1855 add launch offline button to instance UI

This commit is contained in:
Affe Ali
2017-04-26 20:51:50 +02:00
committed by Petr Mrázek
parent 9bde1c8512
commit 0132fd9929
2 changed files with 15 additions and 1 deletions

View File

@ -47,6 +47,7 @@ private
slots:
void on_closeButton_clicked();
void on_btnKillMinecraft_clicked();
void on_btnLaunchMinecraftOffline_clicked();
void on_InstanceLaunchTask_changed(std::shared_ptr<LaunchTask> proc);
void on_RunningState_changed(bool running);
@ -65,4 +66,5 @@ private:
PageContainer *m_container = nullptr;
QPushButton *m_closeButton = nullptr;
QPushButton *m_killButton = nullptr;
QPushButton *m_launchOfflineButton = nullptr;
};