Skip to content

Commit 7f357ad

Browse files
committed
snapshot
1 parent a7a8e86 commit 7f357ad

File tree

4 files changed

+181
-2
lines changed

4 files changed

+181
-2
lines changed

src/textual/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ class MyApp(App[None]):
461461
COMMAND_PALETTE_DISPLAY: ClassVar[str | None] = None
462462
"""How the command palette key should be displayed in the footer (or `None` for default)."""
463463

464-
ALLOW_IN_MAXIMIZED_VIEW: ClassVar[str] = ".textual-system,Footer"
464+
ALLOW_IN_MAXIMIZED_VIEW: ClassVar[str] = "Footer"
465465
"""The default value of [Screen.ALLOW_IN_MAXIMIZED_VIEW][textual.screen.Screen.ALLOW_IN_MAXIMIZED_VIEW]."""
466466

467467
BINDINGS: ClassVar[list[BindingType]] = [

src/textual/screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,9 @@ def _arrange(self, size: Size) -> DockArrangeResult:
445445
self,
446446
(
447447
unique_ordered(
448-
[self.maximized],
449448
self.query_children(allow_in_maximized_view),
450449
self.query_children(".-textual-system"),
450+
[self.maximized],
451451
)
452452
if self.maximized is not None
453453
else self._nodes

0 commit comments

Comments
 (0)