From 49364acafa2dc841004f06a5285dff13084a8813 Mon Sep 17 00:00:00 2001 From: frarol96 Date: Sat, 20 Jul 2024 01:51:04 +0000 Subject: [PATCH] Added tooltips and experimental save file generator - Added basic tooltips for most fields - Added advanced tooltips for mod scaling parameters, which calculates example values for up to 4 players - Added basic save file generator - This simply clones the vanilla save file into an identical one with the user-specified file ending. [EXPERIMENTAL] *Minor UI tweak on save file generator confirmation* --- ERSCMU.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ERSCMU.py b/ERSCMU.py index fba0d60..dc9d47d 100644 --- a/ERSCMU.py +++ b/ERSCMU.py @@ -472,8 +472,8 @@ def open_settings_window(): yes_button = msg_box.addButton("Yes", QMessageBox.YesRole) no_button = msg_box.addButton("No", QMessageBox.NoRole) - yes_button.setStyleSheet("background-color: red; margin-left: 0px;") - no_button.setStyleSheet("background-color: green; margin-right: 0px;") + yes_button.setStyleSheet("background-color: red;") + no_button.setStyleSheet("background-color: green;") msg_box.exec_()