1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-01 09:46:17 +02:00

output: Reconfigure xcursor when applying output config

Before this commit, when an output had its scale dynamically changed,
Sway would not load a cursor theme with the new scale. This results
in stale cursor images when moving the cursor into an area controlled
by the compositor, like the background or resize areas.

To reproduce:
- Using IPC, set an output scale to a value that isn't currently used
- Move the cursor into a compositor-controlled area
- The cursor will not change
This commit is contained in:
Tadeo Kondrak 2021-02-24 11:50:34 -07:00 committed by Simon Ser
parent 307b26a149
commit bb41b7b814

View File

@ -483,6 +483,8 @@ bool apply_output_config(struct output_config *oc, struct sway_output *output) {
// this output came online, and some config items (like map_to_output) are
// dependent on an output being present.
input_manager_configure_all_inputs();
// Reconfigure the cursor images, since the scale may have changed.
input_manager_configure_xcursor();
return true;
}