mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
swaybar: fix i3bar relative coordinates when scaling is used
24e8ba048a
did not take scaling into account.
The hotspot size used pixel coordinates, the absolute coordinates were logical,
and the relative coordinates were completely wrong.
This commit makes all coordinates use logical values. If
`"float_event_coords":true` is sent in the handshake message, coordinates are
sent as floating-point values.
The "scale" field is an integer containing the scale value.
This commit is contained in:
parent
fca32b6334
commit
7affe5c1bd
8 changed files with 51 additions and 38 deletions
|
@ -85,6 +85,13 @@ bool status_handle_readable(struct status_line *status) {
|
|||
}
|
||||
}
|
||||
|
||||
json_object *float_event_coords;
|
||||
if (json_object_object_get_ex(header, "float_event_coords", &float_event_coords)
|
||||
&& json_object_get_boolean(float_event_coords)) {
|
||||
sway_log(SWAY_DEBUG, "Enabling floating-point coordinates.");
|
||||
status->float_event_coords = true;
|
||||
}
|
||||
|
||||
json_object *signal;
|
||||
if (json_object_object_get_ex(header, "stop_signal", &signal)) {
|
||||
status->stop_signal = json_object_get_int(signal);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue