Removed set_layout_orientation call from Text element. Was crashing following Remi update.

This commit is contained in:
PySimpleGUI 2020-02-18 20:43:42 -05:00
parent 0cbddfc980
commit b62ad7cc1b
1 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#usr/bin/python3
version = __version__ = "0.35.0 Released 16-Jan-2020"
version = __version__ = "0.35.1 Unreleased fix for Text element after Remi update"
port = 'PySimpleGUIWeb'
@ -19,7 +19,7 @@ import base64, binascii
import mimetypes
from random import randint
from typing import List, Any, Union, Tuple, Dict # For doing types in comments
# from typing import List, Any, Union, Tuple, Dict # For doing types in comments
try:
@ -4203,7 +4203,6 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form):
elif element_type == ELEM_TYPE_TEXT:
element = element # type: Text
element.Widget = remi.gui.Label(element.DisplayText)
element.Widget.set_layout_orientation(True)
do_font_and_color(element.Widget)
if auto_size_text and element.Size == (None, None):
del(element.Widget.style['width'])