diff options
| -rw-r--r-- | src/backend/tty.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/tty.rs b/src/backend/tty.rs index 1f0eae32..045f48fc 100644 --- a/src/backend/tty.rs +++ b/src/backend/tty.rs @@ -1382,7 +1382,8 @@ impl Tty { span.emit_text(&surface.name.connector); if !device.drm.is_active() { - warn!("device is inactive"); + // This branch hits any time we try to render while the user had switched to a + // different VT, so don't print anything here. return rv; } |
