diff --git a/src/nautilus-floating-bar.c b/src/nautilus-floating-bar.c index 1cac4dc43..973277a27 100644 --- a/src/nautilus-floating-bar.c +++ b/src/nautilus-floating-bar.c @@ -411,8 +411,9 @@ nautilus_floating_bar_constructed (GObject *obj) gtk_widget_set_margin_start (w, 8); labels_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - gtk_box_pack_start (GTK_BOX (box), labels_box, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (box), labels_box, FALSE, TRUE, 0); g_object_set (labels_box, + "hexpand", TRUE, "margin-top", 2, "margin-bottom", 2, "margin-start", 12, diff --git a/src/nautilus-list-view.c b/src/nautilus-list-view.c index 1e1188e8e..9e91b62a2 100644 --- a/src/nautilus-list-view.c +++ b/src/nautilus-list-view.c @@ -3414,7 +3414,8 @@ create_column_editor (NautilusListView *view) box = GTK_WIDGET (gtk_builder_get_object (builder, "box")); column_chooser = nautilus_column_chooser_new (file); - gtk_box_pack_start (GTK_BOX (box), column_chooser, TRUE, TRUE, 0); + gtk_widget_set_vexpand (column_chooser, TRUE); + gtk_box_pack_start (GTK_BOX (box), column_chooser, FALSE, TRUE, 0); g_signal_connect (column_chooser, "changed", G_CALLBACK (column_chooser_changed_callback), diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c index 2b006a25e..998c6da91 100644 --- a/src/nautilus-properties-window.c +++ b/src/nautilus-properties-window.c @@ -4635,7 +4635,8 @@ setup_app_chooser_area (NautilusPropertiesWindow *self) g_autoptr (GAppInfo) info = NULL; self->app_chooser_widget = gtk_app_chooser_widget_new (self->content_type); - gtk_box_pack_start (GTK_BOX (self->app_chooser_widget_box), self->app_chooser_widget, TRUE, TRUE, 0); + gtk_widget_set_vexpand (self->app_chooser_widget, TRUE); + gtk_box_pack_start (GTK_BOX (self->app_chooser_widget_box), self->app_chooser_widget, FALSE, TRUE, 0); gtk_app_chooser_widget_set_show_default (GTK_APP_CHOOSER_WIDGET (self->app_chooser_widget), TRUE); gtk_app_chooser_widget_set_show_fallback (GTK_APP_CHOOSER_WIDGET (self->app_chooser_widget), TRUE); diff --git a/src/nautilus-search-popover.c b/src/nautilus-search-popover.c index 37e18d889..4ab345608 100644 --- a/src/nautilus-search-popover.c +++ b/src/nautilus-search-popover.c @@ -590,9 +590,10 @@ show_other_types_dialog (NautilusSearchPopover *popover) GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + gtk_widget_set_vexpand (scrolled, TRUE); gtk_widget_show (scrolled); gtk_container_set_border_width (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), 0); - gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), scrolled, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), scrolled, FALSE, TRUE, 0); treeview = gtk_tree_view_new (); gtk_tree_view_set_model (GTK_TREE_VIEW (treeview), GTK_TREE_MODEL (store)); diff --git a/src/nautilus-view-icon-item-ui.c b/src/nautilus-view-icon-item-ui.c index 837dc54a9..259badfa8 100644 --- a/src/nautilus-view-icon-item-ui.c +++ b/src/nautilus-view-icon-item-ui.c @@ -148,6 +148,7 @@ constructed (GObject *object) gtk_box_pack_start (container, GTK_WIDGET (self->icon), FALSE, FALSE, 0); label = GTK_LABEL (gtk_label_new (nautilus_file_get_display_name (file))); + gtk_widget_set_vexpand (GTK_WIDGET (label), TRUE); gtk_widget_show (GTK_WIDGET (label)); #if PANGO_VERSION_CHECK (1, 44, 4) @@ -165,7 +166,7 @@ constructed (GObject *object) gtk_label_set_lines (label, 3); gtk_label_set_justify (label, GTK_JUSTIFY_CENTER); gtk_widget_set_valign (GTK_WIDGET (label), GTK_ALIGN_START); - gtk_box_pack_end (container, GTK_WIDGET (label), TRUE, TRUE, 0); + gtk_box_pack_end (container, GTK_WIDGET (label), FALSE, TRUE, 0); style_context = gtk_widget_get_style_context (GTK_WIDGET (item_selection_background)); gtk_style_context_add_class (style_context, "icon-item-background"); diff --git a/src/resources/ui/nautilus-compress-dialog.ui b/src/resources/ui/nautilus-compress-dialog.ui index a6bf9c1fb..bc4bf1e1b 100644 --- a/src/resources/ui/nautilus-compress-dialog.ui +++ b/src/resources/ui/nautilus-compress-dialog.ui @@ -116,8 +116,6 @@ - False - True 1 @@ -129,11 +127,9 @@ True True + True 30 - - True - @@ -144,6 +140,7 @@ 6 + True .zip @@ -172,9 +169,6 @@ - - True - @@ -187,8 +181,6 @@ - False - True 2 @@ -204,8 +196,6 @@ - False - True 3 @@ -216,8 +206,6 @@ 0 - False - True 4 @@ -231,8 +219,6 @@ - False - True 5 diff --git a/src/resources/ui/nautilus-create-folder-dialog.ui b/src/resources/ui/nautilus-create-folder-dialog.ui index 818ae0874..75b9aa94d 100644 --- a/src/resources/ui/nautilus-create-folder-dialog.ui +++ b/src/resources/ui/nautilus-create-folder-dialog.ui @@ -23,8 +23,6 @@ 0 - False - True 1 @@ -34,8 +32,6 @@ True - False - True 2 @@ -51,8 +47,6 @@ - False - True 3 diff --git a/src/resources/ui/nautilus-properties-window.ui b/src/resources/ui/nautilus-properties-window.ui index d3cba94ed..ba996fc70 100644 --- a/src/resources/ui/nautilus-properties-window.ui +++ b/src/resources/ui/nautilus-properties-window.ui @@ -21,6 +21,7 @@ + True True True False @@ -67,8 +68,6 @@ - False - False 0 @@ -671,8 +670,6 @@ - False - True 0 @@ -740,15 +737,11 @@ - False - False 0 - False - True 1 @@ -781,8 +774,6 @@ 40 - False - False end 0 @@ -790,11 +781,10 @@ False + 12 + 12 - False - True - 12 end 1 @@ -808,8 +798,6 @@ 40 - False - True 2 @@ -817,6 +805,7 @@ False center + True vertical 6 12 @@ -1202,8 +1191,6 @@ True - False - False 0 @@ -1263,8 +1250,6 @@ - True - True 4 @@ -1301,13 +1286,12 @@ 0 - False - True 0 + True True False vertical @@ -1316,8 +1300,6 @@ - True - True 1 @@ -1336,8 +1318,6 @@ start - False - True 0 @@ -1350,8 +1330,6 @@ True - False - True 1 @@ -1363,15 +1341,11 @@ True - False - True 2 - False - False 2 diff --git a/src/resources/ui/nautilus-search-popover.ui b/src/resources/ui/nautilus-search-popover.ui index 1d03b484d..37de70206 100644 --- a/src/resources/ui/nautilus-search-popover.ui +++ b/src/resources/ui/nautilus-search-popover.ui @@ -55,8 +55,6 @@ - False - True 0 @@ -75,8 +73,6 @@ - False - True 1 @@ -277,8 +273,6 @@ 0 - False - True 0 @@ -289,8 +283,6 @@ pan-down-symbolic - False - True 1 @@ -369,8 +361,6 @@ - False - True 0 @@ -389,8 +379,6 @@ - False - True 1 diff --git a/src/resources/ui/nautilus-toolbar-view-menu.ui b/src/resources/ui/nautilus-toolbar-view-menu.ui index ff9a1c59e..760820f40 100644 --- a/src/resources/ui/nautilus-toolbar-view-menu.ui +++ b/src/resources/ui/nautilus-toolbar-view-menu.ui @@ -20,8 +20,6 @@ 6 - False - True 0 @@ -37,8 +35,6 @@ - False - True 1 @@ -52,8 +48,6 @@ _A-Z - False - True 2 @@ -67,8 +61,6 @@ _Z-A - False - True 3 @@ -82,8 +74,6 @@ Last _Modified - False - True 4 @@ -97,8 +87,6 @@ _First Modified - False - True 5 @@ -112,8 +100,6 @@ _Size - False - True 6 @@ -127,8 +113,6 @@ _Type - False - True 7 @@ -141,15 +125,11 @@ Last _Trashed - False - True 8 - False - True 0 @@ -161,8 +141,6 @@ 6 - False - True 1 @@ -174,8 +152,6 @@ _Visible Columns… - False - True 2 @@ -188,8 +164,6 @@ R_eload - False - True 4 @@ -201,8 +175,6 @@ St_op - False - True 5 @@ -219,6 +191,7 @@ True + True True False False @@ -234,13 +207,12 @@ - True - True 0 + True True False False @@ -255,13 +227,12 @@ - True - True 1 + True True False False @@ -277,8 +248,6 @@ - True - True 2 @@ -287,8 +256,6 @@ - False - True 0 diff --git a/src/resources/ui/nautilus-toolbar.ui b/src/resources/ui/nautilus-toolbar.ui index 4bf6e3621..cde9d0e70 100644 --- a/src/resources/ui/nautilus-toolbar.ui +++ b/src/resources/ui/nautilus-toolbar.ui @@ -36,8 +36,6 @@ - False - True 0 @@ -58,8 +56,6 @@ - False - True 1 @@ -80,15 +76,11 @@ - False - True 2 - False - True 0 @@ -98,8 +90,6 @@ False - False - True 1 @@ -120,8 +110,6 @@ Edit - False - True 0 @@ -144,8 +132,6 @@ - False - True 1 @@ -167,8 +153,6 @@ - False - True 2 @@ -190,15 +174,11 @@ - False - True 3 - False - True 2 @@ -208,8 +188,6 @@ False - False - True 3 @@ -224,8 +202,6 @@ Select All - False - True 4 @@ -235,8 +211,6 @@ False - False - True 5 @@ -250,8 +224,6 @@ Show _Hidden Files - False - True 6 @@ -265,8 +237,6 @@ Show _Sidebar - False - True 7 @@ -276,8 +246,6 @@ False - False - True 8 @@ -291,8 +259,6 @@ _Preferences - False - True 9 @@ -305,8 +271,6 @@ _Keyboard Shortcuts - False - True 10 @@ -319,8 +283,6 @@ _Help - False - True 11 @@ -333,8 +295,6 @@ _About Files - False - True 12 @@ -364,8 +324,6 @@ - False - True 1 @@ -382,8 +340,6 @@ 6 - False - True 0 @@ -396,8 +352,6 @@ _Undo - False - True 1 @@ -410,15 +364,11 @@ _Redo - False - True 2 - False - True 2 @@ -432,8 +382,6 @@ - False - True 3 @@ -497,8 +445,6 @@ - False - True 0 @@ -524,8 +470,6 @@ - False - True 2 @@ -560,8 +504,6 @@ - False - True 0 @@ -587,8 +529,6 @@ - False - True 1 @@ -636,8 +576,6 @@ - False - True 0 @@ -667,8 +605,6 @@ - False - True 0 @@ -693,8 +629,6 @@ - False - True 1 @@ -703,8 +637,6 @@ - False - True 2 @@ -729,8 +661,6 @@ - False - True 3 diff --git a/src/resources/ui/nautilus-window.ui b/src/resources/ui/nautilus-window.ui index e554696ca..853a693ca 100644 --- a/src/resources/ui/nautilus-window.ui +++ b/src/resources/ui/nautilus-window.ui @@ -22,6 +22,7 @@ 6 + True True True True @@ -29,11 +30,6 @@ - - start - True - True -