mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 02:13:13 +00:00
tree/output: Rely on modeset arranging root
output_enable/output_disable are only called from modeset, and from output destroy which requests modeset. As such, they can rely on the modeset handling arrange.
This commit is contained in:
parent
b83e5aaa54
commit
6045ad9a02
|
@ -183,9 +183,6 @@ void output_enable(struct sway_output *output) {
|
||||||
input_manager_configure_xcursor();
|
input_manager_configure_xcursor();
|
||||||
|
|
||||||
wl_signal_emit_mutable(&root->events.new_node, &output->node);
|
wl_signal_emit_mutable(&root->events.new_node, &output->node);
|
||||||
|
|
||||||
arrange_layers(output);
|
|
||||||
arrange_root();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void evacuate_sticky(struct sway_workspace *old_ws,
|
static void evacuate_sticky(struct sway_workspace *old_ws,
|
||||||
|
@ -300,13 +297,6 @@ void output_disable(struct sway_output *output) {
|
||||||
list_del(root->outputs, index);
|
list_del(root->outputs, index);
|
||||||
|
|
||||||
output->enabled = false;
|
output->enabled = false;
|
||||||
|
|
||||||
arrange_root();
|
|
||||||
|
|
||||||
// Reconfigure all devices, since devices with map_to_output directives for
|
|
||||||
// an output that goes offline should stop sending events as long as the
|
|
||||||
// output remains offline.
|
|
||||||
input_manager_configure_all_input_mappings();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void output_begin_destroy(struct sway_output *output) {
|
void output_begin_destroy(struct sway_output *output) {
|
||||||
|
|
Loading…
Reference in a new issue