From fdfe104dc49d762037870dd95f353b38dfc00b66 Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Fri, 10 May 2024 16:14:59 +0100 Subject: [PATCH] Add note about inline-mode to the docs --- docs/guide/app.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/guide/app.md b/docs/guide/app.md index 2431f389b9..54df97175d 100644 --- a/docs/guide/app.md +++ b/docs/guide/app.md @@ -47,6 +47,10 @@ Inline apps are useful for tools that integrate closely with the typical workflo To run an app in inline mode set the `inline` parameter to `True` when you call [App.run()][textual.app.App.run]. See [Style Inline Apps](../how-to/style-inline-apps.md) for how to apply additional styles to inline apps. +!!! note + + Inline mode is not currently supported on Windows. + ## Events Textual has an event system you can use to respond to key presses, mouse actions, and internal state changes. Event handlers are methods prefixed with `on_` followed by the name of the event.