fix appearance broken by #3812
This commit is contained in:
parent
229df1ce09
commit
7306cdddde
@ -847,12 +847,6 @@ class App(MiddlewareMixin, LifespanMixin):
|
|||||||
(0, "AppWrap"): AppWrap.create()
|
(0, "AppWrap"): AppWrap.create()
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.theme is not None:
|
|
||||||
# If a theme component was provided, wrap the app with it
|
|
||||||
app_wrappers[(20, "Theme")] = self.theme
|
|
||||||
# Fix #2992 by removing the top-level appearance prop
|
|
||||||
self.theme.appearance = None
|
|
||||||
|
|
||||||
for route in self.unevaluated_pages:
|
for route in self.unevaluated_pages:
|
||||||
console.debug(f"Evaluating page: {route}")
|
console.debug(f"Evaluating page: {route}")
|
||||||
self._compile_page(route)
|
self._compile_page(route)
|
||||||
@ -1009,6 +1003,12 @@ class App(MiddlewareMixin, LifespanMixin):
|
|||||||
)
|
)
|
||||||
progress.advance(task)
|
progress.advance(task)
|
||||||
|
|
||||||
|
if self.theme is not None:
|
||||||
|
# If a theme component was provided, wrap the app with it
|
||||||
|
app_wrappers[(20, "Theme")] = self.theme
|
||||||
|
# Fix #2992 by removing the top-level appearance prop
|
||||||
|
self.theme.appearance = None
|
||||||
|
|
||||||
# Compile the app root.
|
# Compile the app root.
|
||||||
compile_results.append(
|
compile_results.append(
|
||||||
compiler.compile_app(app_root),
|
compiler.compile_app(app_root),
|
||||||
|
Loading…
Reference in New Issue
Block a user