fix margins

This commit is contained in:
yggverse 2024-12-18 20:28:38 +02:00
parent e35b5e82e9
commit 50a0b3b6e5
2 changed files with 2 additions and 3 deletions

View File

@ -4,8 +4,6 @@ use gtk::{
Button,
};
const MARGIN: i32 = 6;
pub struct Widget {
pub button: Button,
}
@ -17,7 +15,6 @@ impl Widget {
let button = Button::builder()
//.css_classes(["accent"])
.label("Send")
.margin_bottom(MARGIN)
.build();
// Init events

View File

@ -1,5 +1,6 @@
use gtk::{prelude::BoxExt, Align, Box, Button, Label, Orientation};
const MARGIN: i32 = 8;
const SPACING: i32 = 8;
pub struct Widget {
@ -12,6 +13,7 @@ impl Widget {
// Init main widget
let g_box = Box::builder()
.halign(Align::End)
.margin_bottom(MARGIN)
.orientation(Orientation::Horizontal)
.spacing(SPACING)
.build();