Merge branch 'cifix' into 'master'
glib: Fix import See merge request World/Phosh/squeekboard!551
This commit is contained in:
@ -36,7 +36,6 @@ use crate::util::c::Wrapped;
|
|||||||
pub mod c {
|
pub mod c {
|
||||||
use super::*;
|
use super::*;
|
||||||
use glib;
|
use glib;
|
||||||
use gtk::Continue;
|
|
||||||
use std::os::raw::c_void;
|
use std::os::raw::c_void;
|
||||||
|
|
||||||
use crate::outputs::c::WlOutput;
|
use crate::outputs::c::WlOutput;
|
||||||
@ -67,7 +66,7 @@ pub mod c {
|
|||||||
glib::idle_add_local(move || {
|
glib::idle_add_local(move || {
|
||||||
let panel = panel.clone_ref();
|
let panel = panel.clone_ref();
|
||||||
panel.borrow_mut().set_configured(Size{width, height});
|
panel.borrow_mut().set_configured(Size{width, height});
|
||||||
Continue(false)
|
glib::Continue(false)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user