mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-28 03:54:15 +00:00
fix margins
This commit is contained in:
parent
e35b5e82e9
commit
50a0b3b6e5
@ -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
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user