Closed pas closed 2 weeks ago
MSS influences the size and the usability of GUI created by PySimpleGUI. The GUI gets unusable. Don't know if this is a issue of PySimpleGUI or MSS.
Short script to reproduce the issue. Press the button to see the issue:
from mss import mss import PySimpleGUI as sg if __name__ == "__main__": window = sg.Window("bug", layout=[[sg.Button("Run mss")]]) while True: event, values = window.read() if (event == "Run mss"): mss = mss()
No error
Problem resolved: https://github.com/PySimpleGUI/PySimpleGUI/issues/6392
General information:
Description of the warning/error
MSS influences the size and the usability of GUI created by PySimpleGUI. The GUI gets unusable. Don't know if this is a issue of PySimpleGUI or MSS.
Short script to reproduce the issue. Press the button to see the issue:
Full error message
No error
Upvote & Fund