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:
parent
1df3327d9b
commit
ab3c3737bb
|
@ -168,6 +168,7 @@ def main(page: ft.Page):
|
||||||
threading.excepthook = thread_exc_hook
|
threading.excepthook = thread_exc_hook
|
||||||
|
|
||||||
page.title = f"WuttaPOS v{wuttapos.__version__}"
|
page.title = f"WuttaPOS v{wuttapos.__version__}"
|
||||||
|
page.window.full_screen = True
|
||||||
|
|
||||||
# global defaults for button/text styles etc.
|
# global defaults for button/text styles etc.
|
||||||
page.data = {
|
page.data = {
|
||||||
|
@ -225,11 +226,6 @@ def main(page: ft.Page):
|
||||||
elif page.route == '/login':
|
elif page.route == '/login':
|
||||||
page.views.append(LoginView(config, '/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()
|
page.update()
|
||||||
|
|
||||||
# TODO: this was in example docs but not sure what it's for?
|
# TODO: this was in example docs but not sure what it's for?
|
||||||
|
|
Loading…
Reference in a new issue