diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-07-19 13:18:30 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-07-19 13:18:30 -0400 |
commit | defc3d8cbc7e5189c73fa1aad51bc8acc73d132c (patch) | |
tree | e6b7e1d955547643306ac1f0370fb034fb829293 /gtk/gtk-builder-tool.c | |
parent | f881f37789ab265c981554bf997fc7dcd11180c1 (diff) | |
download | gtk+-defc3d8cbc7e5189c73fa1aad51bc8acc73d132c.tar.gz |
builder-tool: Don't strip border-width
Strictly speaking, this would only have to be special-cased inside
GtkDialog, but lets just skip it altogether.
Diffstat (limited to 'gtk/gtk-builder-tool.c')
-rw-r--r-- | gtk/gtk-builder-tool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtk-builder-tool.c b/gtk/gtk-builder-tool.c index 3223f6f660..e68ec414c2 100644 --- a/gtk/gtk-builder-tool.c +++ b/gtk/gtk-builder-tool.c @@ -134,6 +134,7 @@ needs_explicit_setting (MyParserData *data, { "GtkGrid", "top-attach", 1 }, { "GtkWidget", "hexpand", 0 }, { "GtkWidget", "vexpand", 0 }, + { "GtkContainer", "border-width", 0 }, { NULL, NULL, 0 } }; const gchar *class_name; |