mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
add horizontal margins for picture
This commit is contained in:
parent
9c54f0b294
commit
2b2cb50f28
1 changed files with 9 additions and 4 deletions
|
|
@ -1,4 +1,6 @@
|
|||
use gtk::{gdk_pixbuf::Pixbuf, Picture};
|
||||
use gtk::{gdk_pixbuf::Pixbuf, prelude::WidgetExt, Picture};
|
||||
|
||||
const MARGIN: i32 = 6;
|
||||
|
||||
pub struct Image {
|
||||
gobject: Picture,
|
||||
|
|
@ -7,9 +9,12 @@ pub struct Image {
|
|||
impl Image {
|
||||
// Construct
|
||||
pub fn new_from_pixbuf(buffer: &Pixbuf) -> Self {
|
||||
Self {
|
||||
gobject: Picture::for_pixbuf(buffer),
|
||||
}
|
||||
let gobject = Picture::for_pixbuf(buffer);
|
||||
|
||||
gobject.set_margin_end(MARGIN);
|
||||
gobject.set_margin_start(MARGIN);
|
||||
|
||||
Self { gobject }
|
||||
}
|
||||
|
||||
// Getters
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue