-
-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regen bindings #1775
Regen bindings #1775
Conversation
~~Wost offender is missing GtkResponseType.~~Fixed. |
gtk4/src/auto/widget.rs
Outdated
@@ -1325,7 +1327,6 @@ pub trait WidgetExt: IsA<Widget> + sealed::Sealed + 'static { | |||
} | |||
|
|||
#[doc(alias = "gtk_widget_set_parent")] | |||
#[doc(alias = "parent")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This property is not writable, hence this is correct.
gtk4/src/auto/map_list_model.rs
Outdated
@@ -110,7 +110,6 @@ impl MapListModel { | |||
} | |||
|
|||
#[doc(alias = "gtk_map_list_model_set_model")] | |||
#[doc(alias = "model")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This property is construct only, hence this also makes sense. Odd api.
1481d99
to
9e05795
Compare
@@ -4206,6 +4209,7 @@ extern "C" { | |||
//========================================================================= | |||
// GdkToplevelSize | |||
//========================================================================= | |||
pub fn gdk_toplevel_size_get_type() -> GType; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This lacks v4_12 as it wasn't exposed before that causing build breaks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean manually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah
I just redid the MR without the GTK patch. |
Pushed a fixed version in #1792 , thanks |
Using gtk-rs/gir-files#203
cc @bilelmoussaoui . Multiple things are not correct.