Skip to content

Commit

Permalink
Change output color to match rest of window
Browse files Browse the repository at this point in the history
  • Loading branch information
csm10495 committed Sep 11, 2021
1 parent 7b72a30 commit 7b1361f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cappinstaller/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _get_layout(self) -> list:
[sg.Frame('Configurations', cg2.get_list_of_list_of_checkboxes().tolist(), expand_x=True)]
]
),
sg.Multiline(key='Output', disabled=True, expand_x=True, expand_y=True, autoscroll=True, size=(100, 1))
sg.Multiline(key='Output', disabled=True, expand_x=True, expand_y=True, autoscroll=True, size=(100, 1), background_color=sg.theme_background_color(), text_color='white')
],
[sg.Frame('Actions', [[sg.Button(button_text='Select All', key='select_all'), sg.Button(button_text='Install Selected', key='install_selected')]], expand_x=True)]
]
Expand Down

0 comments on commit 7b1361f

Please sign in to comment.