fix: change how we set app to be full screen (again)

this restores the way we did it originally.  am hoping that latest
flet has resolved whatever issue(s) may have been seen before
This commit is contained in:
Lance Edgar 2024-07-05 20:21:56 -05:00
parent 1df3327d9b
commit ab3c3737bb

View file

@ -168,6 +168,7 @@ def main(page: ft.Page):
threading.excepthook = thread_exc_hook
page.title = f"WuttaPOS v{wuttapos.__version__}"
page.window.full_screen = True
# global defaults for button/text styles etc.
page.data = {
@ -225,11 +226,6 @@ def main(page: ft.Page):
elif page.route == '/login':
page.views.append(LoginView(config, '/login'))
# nb. setting this "last minute" on page change seems to be
# more reliable, otherwise the app doesn't always startup in
# full screen for some reason
page.window.full_screen = True
page.update()
# TODO: this was in example docs but not sure what it's for?