You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to Flexx but I couldn't find any information on this problem so apologies if it has been solved already.
I am currently running the example apps for the desktop with the following code.
from flexx import flx
class Example(flx.Widget):
def init(self):
flx.Button(text='hello')
flx.Button(text='world')
app = flx.App(Example)
app.launch('app')
flx.run()
It works fine the first time it is run, however after closing the window and running again it always starts an extra incognito window along with the app itself. After doing some digging it seems if I open the app in browser mode chrome will have a notification that the previous tabs were not closed properly and ask if I want to restore them. The problem is solved by dismissing that notification and running the app again in desktop mode, but will appear again if I close and relaunch.
I am using python 3.7 and Chrome for the browser.
The text was updated successfully, but these errors were encountered:
I'm new to Flexx but I couldn't find any information on this problem so apologies if it has been solved already.
I am currently running the example apps for the desktop with the following code.
It works fine the first time it is run, however after closing the window and running again it always starts an extra incognito window along with the app itself. After doing some digging it seems if I open the app in browser mode chrome will have a notification that the previous tabs were not closed properly and ask if I want to restore them. The problem is solved by dismissing that notification and running the app again in desktop mode, but will appear again if I close and relaunch.
I am using python 3.7 and Chrome for the browser.
The text was updated successfully, but these errors were encountered: