From 68fc5f699b7e3cfd40fe646c6c65c5ffcc084153 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Mon, 10 Dec 2018 19:33:01 -0500 Subject: [PATCH] Fixed missing '+' in the Table and Tree elements style def --- PySimpleGUIQt/PySimpleGUIQt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PySimpleGUIQt/PySimpleGUIQt.py b/PySimpleGUIQt/PySimpleGUIQt.py index 0ffca9fa..2e1a8c18 100644 --- a/PySimpleGUIQt/PySimpleGUIQt.py +++ b/PySimpleGUIQt/PySimpleGUIQt.py @@ -4540,7 +4540,7 @@ def PackFormIntoFrame(window, containing_frame, toplevel_win): element.QT_QLineEdit.setText(str(default_text)) style = 'QLineEdit {' - style = create_style_from_font(font) + style += create_style_from_font(font) if element.TextColor is not None: style += 'color: %s;' % element.TextColor if element.BackgroundColor is not None: @@ -5218,7 +5218,7 @@ def PackFormIntoFrame(window, containing_frame, toplevel_win): element.QT_TableWidget.setFixedHeight(element.NumRows*35+25) # element.QT_TableWidget = QTableWidget() style = 'QTableWidget {' - style = create_style_from_font(font) + style += create_style_from_font(font) if element.TextColor is not None: style += 'color: %s;' % element.TextColor if element.BackgroundColor is not None: