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*
This commit is contained in:
frarol96 2024-07-20 01:51:04 +00:00
parent a99a30a71d
commit 49364acafa

View File

@ -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_()