From 538e469723ea4efd3982534cd726afa11da20e2a Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Wed, 23 Jan 2019 16:31:04 -0500 Subject: [PATCH] Removed debug print --- PySimpleGUIWeb/PySimpleGUIWeb.py | 1 - 1 file changed, 1 deletion(-) diff --git a/PySimpleGUIWeb/PySimpleGUIWeb.py b/PySimpleGUIWeb/PySimpleGUIWeb.py index e051918c..6ee0df3c 100644 --- a/PySimpleGUIWeb/PySimpleGUIWeb.py +++ b/PySimpleGUIWeb/PySimpleGUIWeb.py @@ -4046,7 +4046,6 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form): elif element_type == ELEM_TYPE_BUTTON: element = element # type: Button size = convert_tkinter_size_to_Wx(element_size) - print(size) element.Widget = remi.gui.Button(element.ButtonText, width=size[0], height=size[1], margin='10px') element.Widget.onclick.connect(element.ButtonCallBack) do_font_and_color(element.Widget)