You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building my UI with blueprint-compiler and Gtk.Template, and have found that properties defined by ignis cannot be bound to Gtk widgets' properties because they are defined with different value_types:
an example of blueprint
ListView {
factory: BuilderListItemFactory {
template ListItem {
child: Label {
// lookup `name` from IgnisApplication as string, while `name` is defined as GParamBoxed
label: bind template.item as <$IgnisApplication>.name;
}
}
}
}
So I suppose that properties defined by ignis should have explicit types:
Feature Description
I'm building my UI with
blueprint-compiler
andGtk.Template
, and have found that properties defined by ignis cannot be bound to Gtk widgets' properties because they are defined with differentvalue_type
s:an example of blueprint
So I suppose that properties defined by ignis should have explicit types:
list properties' names and types
will get output:
Also, when running
ignis inspector
, we cannot view or edit those properties because they are typedPyObject
:screenshot
See also:
The text was updated successfully, but these errors were encountered: