From 33b5a8749a9a2c9985c9006ee7139e4f0931d444 Mon Sep 17 00:00:00 2001 From: DazedAnon Date: Sat, 13 Jun 2026 16:30:06 -0500 Subject: [PATCH] Move install --- gui/workflow_tab.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/gui/workflow_tab.py b/gui/workflow_tab.py index 586f0dc..466f5e5 100644 --- a/gui/workflow_tab.py +++ b/gui/workflow_tab.py @@ -2638,16 +2638,6 @@ class WorkflowTab(QWidget): apply_pt_btn.clicked.connect(self._apply_playtest_settings) action_row.addWidget(apply_pt_btn) - action_row.addStretch(1) - - self._install_both_btn = _make_btn("⬇ Install Both", "#3a5a7a") - self._install_both_btn.setFixedHeight(30) - self._install_both_btn.setToolTip( - "Install TL Inspector and Forge as separate plugins (MV/MZ)" - ) - self._install_both_btn.clicked.connect(self._install_both_playtest) - action_row.addWidget(self._install_both_btn) - settings_inner.addLayout(action_row) layout.addWidget(settings_box) self._step8_settings_box = settings_box @@ -2725,6 +2715,14 @@ class WorkflowTab(QWidget): self._step8_forge_credits.setOpenExternalLinks(True) plugins_inner.addWidget(self._step8_forge_credits) + self._install_both_btn = _make_btn("⬇ Install Both", "#3a5a7a") + self._install_both_btn.setMinimumHeight(30) + self._install_both_btn.setToolTip( + "Install TL Inspector and Forge as separate plugins (MV/MZ)" + ) + self._install_both_btn.clicked.connect(self._install_both_playtest) + plugins_inner.addWidget(self._install_both_btn) + layout.addWidget(plugins_box) self._step8_playtest_box = plugins_box self._step8_forge_box = self._step8_forge_section