diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-01-18 21:16:36 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-01-18 21:16:36 +0400 |
| commit | 3461c66d2ce8fb53e2a709b27868229786604256 (patch) | |
| tree | 4e0a7b99042c307eb96aa3c8a9c884ccce918797 /src/niri.rs | |
| parent | 011c91c98a76880744d35afa763c20db074d9c90 (diff) | |
| download | niri-3461c66d2ce8fb53e2a709b27868229786604256.tar.gz niri-3461c66d2ce8fb53e2a709b27868229786604256.tar.bz2 niri-3461c66d2ce8fb53e2a709b27868229786604256.zip | |
Redraw upon starting PW stream
Otherwise it may take a while for the first frame to arrive.
Diffstat (limited to 'src/niri.rs')
| -rw-r--r-- | src/niri.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/niri.rs b/src/niri.rs index 16e0f2d6..93b50be3 100644 --- a/src/niri.rs +++ b/src/niri.rs @@ -705,6 +705,7 @@ impl State { } } ScreenCastToNiri::StopCast { session_id } => self.niri.stop_cast(session_id), + ScreenCastToNiri::Redraw(output) => self.niri.queue_redraw(output), } } |
