robertlugg / easygui

easygui for Python
http://easygui.readthedocs.org/en/master/
BSD 3-Clause "New" or "Revised" License
455 stars 114 forks source link

easygui not working when called after ToastNotifier from win10toast #152

Open Gettyk opened 5 years ago

Gettyk commented 5 years ago

I have no problem with my easgui GUIs in my scrip until I try to create one after calling a ToastNotifier() from win10toast

In this script, the ToastNotifier is displayed but never the msgbox. It seems the script waits for something that never comes.

import easygui
from win10toast import ToastNotifier
toaster = ToastNotifier()
toaster.show_toast("start",
                "start",
                duration=3)
easygui.msgbox('Do you see me?', 'Hello!')