mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
use common const
This commit is contained in:
parent
9b3fad7e76
commit
1ffc5c1edb
1 changed files with 7 additions and 4 deletions
|
|
@ -1,6 +1,9 @@
|
|||
use gtk::{prelude::BoxExt, Box, Button, Entry, Orientation};
|
||||
use std::sync::Arc;
|
||||
|
||||
const MARGIN: i32 = 6;
|
||||
const SPACING: i32 = 6;
|
||||
|
||||
pub struct Widget {
|
||||
gobject: Box,
|
||||
}
|
||||
|
|
@ -16,10 +19,10 @@ impl Widget {
|
|||
) -> Arc<Self> {
|
||||
let gobject = Box::builder()
|
||||
.orientation(Orientation::Horizontal)
|
||||
.spacing(8)
|
||||
.margin_start(6)
|
||||
.margin_end(6)
|
||||
.margin_bottom(6)
|
||||
.spacing(SPACING)
|
||||
.margin_start(MARGIN)
|
||||
.margin_end(MARGIN)
|
||||
.margin_bottom(MARGIN)
|
||||
.build();
|
||||
|
||||
gobject.append(base);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue