Fix sensors

Signed-off-by: Vasiliy Doylov <nekodevelopper@gmail.com>
This commit is contained in:
Vasiliy Doylov 2025-03-02 15:07:47 +03:00
parent f478864b2c
commit de2add8d0f
Signed by: NekoCWD
GPG key ID: B7BE22D44474A582
2 changed files with 9 additions and 1 deletions

View file

@ -9,7 +9,6 @@ class TheCatTools.GUI.BoubleBar : Adw.Bin, Gtk.Orientable {
width_request = 60; width_request = 60;
notify["value"].connect (queue_draw); notify["value"].connect (queue_draw);
add_css_class ("bubble-bar"); add_css_class ("bubble-bar");
vexpand = true;
bubble.vexpand = true; bubble.vexpand = true;
bubble.hexpand = true; bubble.hexpand = true;
overlay.add_overlay (bubble); overlay.add_overlay (bubble);
@ -24,4 +23,10 @@ class TheCatTools.GUI.BoubleBar : Adw.Bin, Gtk.Orientable {
width_request = orientation ? -1 : requested_size; width_request = orientation ? -1 : requested_size;
height_request = orientation ? requested_size : -1; height_request = orientation ? requested_size : -1;
} }
public class Line : DrawingAreaOrientable {
public override void draw_func (Gtk.DrawingArea self, Cairo.Context cr, int width, int height) {
assert_not_reached ();
}
}
} }

View file

@ -31,6 +31,7 @@ template $TheCatToolsWindow: Adw.ApplicationWindow {
[start] [start]
$TheCatToolsGUIBoubleBar hbar { $TheCatToolsGUIBoubleBar hbar {
orientation: horizontal; orientation: horizontal;
layout { layout {
column: 2; column: 2;
row: 1; row: 1;
@ -45,6 +46,8 @@ template $TheCatToolsWindow: Adw.ApplicationWindow {
[start] [start]
$TheCatToolsGUIBoubleBar vbar { $TheCatToolsGUIBoubleBar vbar {
orientation: vertical; orientation: vertical;
vexpand: true;
layout { layout {
column: 1; column: 1;
row: 1; row: 1;