forked from AuroraMiddleware/gtk
Fix a gtk-builder-tool substitution.
The margin-left and margin-right properties have been removed in favor of margin-start and margin-end ones.
This commit is contained in:
parent
12990b3520
commit
17ec74da35
@ -726,9 +726,10 @@ maybe_rename_property (Element *element, MyParserData *data)
|
|||||||
const char *new_name;
|
const char *new_name;
|
||||||
const char *alt_names[3];
|
const char *alt_names[3];
|
||||||
} props[] = {
|
} props[] = {
|
||||||
|
/* the "replacement" property is placed *after* the "added" properties */
|
||||||
{ "GtkPopover", "modal", GTK_TYPE_POPOVER, PROP_KIND_OBJECT, "autohide", { NULL, NULL, NULL } },
|
{ "GtkPopover", "modal", GTK_TYPE_POPOVER, PROP_KIND_OBJECT, "autohide", { NULL, NULL, NULL } },
|
||||||
{ "GtkWidget", "expand", GTK_TYPE_WIDGET, PROP_KIND_OBJECT, "hexpand", { "vexpand", NULL, NULL } },
|
{ "GtkWidget", "expand", GTK_TYPE_WIDGET, PROP_KIND_OBJECT, "vexpand", { "hexpand", NULL, NULL } },
|
||||||
{ "GtkWidget", "margin", GTK_TYPE_WIDGET, PROP_KIND_OBJECT, "margin-left", { "margin-top", "margin-right", "margin-bottom" } },
|
{ "GtkWidget", "margin", GTK_TYPE_WIDGET, PROP_KIND_OBJECT, "margin-bottom", { "margin-start", "margin-end", "margin-top" } },
|
||||||
{ "GtkHeaderBar", "show-close-button", GTK_TYPE_HEADER_BAR, PROP_KIND_OBJECT, "show-title-buttons", { NULL, NULL, NULL } }
|
{ "GtkHeaderBar", "show-close-button", GTK_TYPE_HEADER_BAR, PROP_KIND_OBJECT, "show-title-buttons", { NULL, NULL, NULL } }
|
||||||
};
|
};
|
||||||
int i, k, l;
|
int i, k, l;
|
||||||
|
Loading…
Reference in New Issue
Block a user