diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-05-07 08:30:39 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-05-11 22:21:33 -0400 |
commit | bc6643f3c22a61c0ce6072cf3e2d33e552d19fe0 (patch) | |
tree | 2399d5a46a6597b4465338ed4f2ae85a25a21e2e /gtk/ui | |
parent | fc9873e9ef1e9a81913565335654776eeb7f5f8f (diff) | |
download | gtk+-bc6643f3c22a61c0ce6072cf3e2d33e552d19fe0.tar.gz |
paned: Redo the api
This commit is porting GtkPaned to be derived
from GtkWidget instead of GtkContainer, while adding
start-child and end-child properties. The existing
properties are renamed to follow the start/end naming
scheme, and we add proper getters and setters.
Update all users.
See #2719
Diffstat (limited to 'gtk/ui')
-rw-r--r-- | gtk/ui/gtkfilechooserwidget.ui | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/ui/gtkfilechooserwidget.ui b/gtk/ui/gtkfilechooserwidget.ui index 244784a9a0..c84cd0ba04 100644 --- a/gtk/ui/gtkfilechooserwidget.ui +++ b/gtk/ui/gtkfilechooserwidget.ui @@ -10,9 +10,9 @@ <property name="vexpand">1</property> <child> <object class="GtkPaned" id="browse_widgets_hpaned"> - <property name="shrink-child2">0</property> - <property name="shrink-child1">0</property> - <property name="resize-child1">0</property> + <property name="shrink-end-child">0</property> + <property name="shrink-start-child">0</property> + <property name="resize-start-child">0</property> <property name="vexpand">1</property> <child> <object class="GtkPlacesSidebar" id="places_sidebar"> |