Skip to content

Commit

Permalink
Make downgrade button clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
coffandro committed Jul 26, 2024
1 parent 2ecc81e commit 806d846
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
6 changes: 4 additions & 2 deletions FOLON-Downgrader.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,16 +731,18 @@ def tab3UI(self): # GUI

Header = QLabel("Downgrade Fallout 4")
Header.setFont(QFont("Overseer", 30))
layout.addRow(Header)
#layout.addRow(Header)
layout.addRow(
QLabel(
"<p>The following button can take quite a while, please <b>be patient</b>.</p>"
)
)

InstallButton = QPushButton(
text="Downgrade Fallout 4 (This will take a long time)"
text="Downgrade Fallout 4 \n(This will take a long time)"
)
InstallButton.setObjectName("InstallButton")
InstallButton.setFont(QFont("Overseer", 25))
InstallButton.pressed.connect(self.InstallInit)
layout.addRow(InstallButton)

Expand Down
11 changes: 11 additions & 0 deletions FOLON.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ QPushButton:enabled {
color: #ddd4ea;
background-color: #a380d2;
}
QPushButton#InstallButton {
margin-left: 100px;
margin-right: 100px;
padding-top: 20px;
padding-bottom: 20px;
/*background-color: #ee8695;
color: black;*/
}
/*QPushButton#InstallButton::Hover {
background-color: #fbbbad;
}*/
QWidget#TextBox {
border-bottom: 2px solid #a380d2;
}
Expand Down

0 comments on commit 806d846

Please sign in to comment.