mirror of
https://github.com/swaywm/sway.git
synced 2024-11-14 14:34:07 +01:00
Merge pull request #2591 from RyanDwyer/fix-workspace-switch
Make outputs dirty when changing focus
This commit is contained in:
commit
c26beebd88
@ -605,6 +605,13 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
|
|||||||
last_workspace->output : NULL;
|
last_workspace->output : NULL;
|
||||||
struct sway_output *new_output = new_workspace->output;
|
struct sway_output *new_output = new_workspace->output;
|
||||||
|
|
||||||
|
if (last_output) {
|
||||||
|
node_set_dirty(&last_output->node);
|
||||||
|
}
|
||||||
|
if (new_output) {
|
||||||
|
node_set_dirty(&new_output->node);
|
||||||
|
}
|
||||||
|
|
||||||
// find new output's old workspace, which might have to be removed if empty
|
// find new output's old workspace, which might have to be removed if empty
|
||||||
struct sway_workspace *new_output_last_ws = NULL;
|
struct sway_workspace *new_output_last_ws = NULL;
|
||||||
if (new_output && last_output != new_output) {
|
if (new_output && last_output != new_output) {
|
||||||
|
Loading…
Reference in New Issue
Block a user