hack: hide 'Download Mods' button when not in the mods tab
This commit is contained in:
parent
f95cebaf06
commit
9e443faba3
@ -143,10 +143,17 @@ ModFolderPage::ModFolderPage(
|
|||||||
ui(new Ui::ModFolderPage)
|
ui(new Ui::ModFolderPage)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
if(id == "mods") {
|
|
||||||
auto act = ui->actionDownload;
|
auto act = ui->actionDownload;
|
||||||
|
if(id == "mods") {
|
||||||
connect(act, &QAction::triggered, this, &ModFolderPage::on_actionInstall_mods_triggered);
|
connect(act, &QAction::triggered, this, &ModFolderPage::on_actionInstall_mods_triggered);
|
||||||
}
|
}
|
||||||
|
else{
|
||||||
|
// HACK: Prevent the download button from showing in the shaders / resource packs tab
|
||||||
|
// This whole thing needs some cleaning up anyway, no next time we can do it properly...
|
||||||
|
act->setVisible(false);
|
||||||
|
act->setText("");
|
||||||
|
act->setToolTip("");
|
||||||
|
}
|
||||||
ui->actionsToolbar->insertSpacer(ui->actionView_configs);
|
ui->actionsToolbar->insertSpacer(ui->actionView_configs);
|
||||||
|
|
||||||
m_inst = inst;
|
m_inst = inst;
|
||||||
|
Loading…
Reference in New Issue
Block a user