Skip to content

Commit fb34a9b

Browse files
committed
Update deps
1 parent 18345fb commit fb34a9b

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

Cargo.lock

Lines changed: 16 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/widgets/tab.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub mod imp {
6767
pub(crate) motion_ctrl: RefCell<Option<gtk::EventControllerMotion>>,
6868
pub(crate) req_handle: RefCell<Option<RemoteHandle<()>>>,
6969
pub(crate) links: RefCell<HashMap<gtk::TextTag, String>>,
70-
#[property(get = Self::history_status, builder(HistoryStatus::static_type()))]
70+
#[property(get = Self::history_status)]
7171
pub(crate) history_status: PhantomData<HistoryStatus>,
7272
#[property(get, set)]
7373
pub(crate) progress: Cell<f64>,

src/widgets/window.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub mod imp {
7272
pub(crate) style_provider: RefCell<gtk::CssProvider>,
7373
#[property(get, set = Self::set_zoom, type = f64, member = value)]
7474
pub(crate) zoom: RefCell<Zoom>,
75-
pub(crate) settings: RefCell<Option<gio::Settings>>, // TODO: May use ConstructCell
75+
pub(crate) settings: glib::ConstructRefCell<gio::Settings>,
7676
}
7777

7878
impl Window {

0 commit comments

Comments
 (0)