Fix sensors

Signed-off-by: Vasiliy Doylov <nekodevelopper@gmail.com>
This commit is contained in:
Vasiliy Doylov 2025-03-02 15:30:16 +03:00
parent 3567d8fb4d
commit 5db4dac1e9
Signed by: NekoCWD
GPG key ID: B7BE22D44474A582

View file

@ -23,8 +23,8 @@ class TheCatTools.GUI.Bubble : DrawingAreaOrientable {
var val_x = clamped (value_x);
var val_y = clamped (value_y);
var range = adjustment.upper - adjustment.lower;
var position_y = radius + (height - 2 * radius) * (val_y - adjustment.lower) / range;
var position_x = radius + (width - 2 * radius) * (val_x - adjustment.lower) / range;
var position_y = radius + (height - 2 * radius) * (val_x - adjustment.lower) / range;
var position_x = radius + (width - 2 * radius) * (val_y - adjustment.lower) / range;
Utils.set_color_rgba (cr, get_color ());
cr.arc (position_x, position_y, radius, 0, Math.PI * 2);
cr.fill ();