Skip to content

Commit

Permalink
set default text color to black
Browse files Browse the repository at this point in the history
  • Loading branch information
RALWORKS committed Oct 4, 2019
1 parent 86186eb commit 2edf9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, main_name):
class App(QMainWindow):
"""The App class, of which the GUI app will be an instance, creates the GUI's widgets and defines its methods """

def __init__(self, me, style1="background-color: #d3e56b; border: none; border-radius:20px; margin-bottom: 15px", style2="background-color: #6be5cb; border: none; border-radius:20px; margin-bottom: 15px", scroll_style=scroll_style, app_style="QFrame { border:none;}", icon=None):
def __init__(self, me, style1="color: black; background-color: #d3e56b; border: none; border-radius:20px; margin-bottom: 15px", style2="color: black; background-color: #6be5cb; border: none; border-radius:20px; margin-bottom: 15px", scroll_style=scroll_style, app_style="QFrame { border:none;}", icon=None):
"""Initialize the GUI
Takes argument me, pointing to the Player """
from .thing import reflexive
Expand Down

0 comments on commit 2edf9f0

Please sign in to comment.