Tue, 30 Aug 2022 01:36:00 -0500
Remove redundant setting of [hv]align
The default is `GTK_ALIGN_FILL`.
Testing Done:
Compile mostly, did check a few widgets, but not everything.
Reviewed at https://reviews.imfreedom.org/r/1692/
--- a/pidgin/gtkaccount.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkaccount.c Tue Aug 30 01:36:00 2022 -0500 @@ -592,7 +592,6 @@ vbox2 = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); gtk_widget_set_hexpand(vbox2, TRUE); - gtk_widget_set_halign(vbox2, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(hbox), vbox2); hbox2 = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 6);
--- a/pidgin/gtkblist.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkblist.c Tue Aug 30 01:36:00 2022 -0500 @@ -3114,7 +3114,6 @@ gtk_scrolled_window_set_child(GTK_SCROLLED_WINDOW(sw), gtkblist->treeview); gtk_widget_set_vexpand(sw, TRUE); - gtk_widget_set_valign(sw, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(gtkblist->vbox), sw); sep = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
--- a/pidgin/gtkconv.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkconv.c Tue Aug 30 01:36:00 2022 -0500 @@ -1350,7 +1350,6 @@ } gtk_widget_set_hexpand(gtkconv->topic_text, TRUE); - gtk_widget_set_halign(gtkconv->topic_text, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(hbox), gtkconv->topic_text); key = gtk_event_controller_key_new(); @@ -1515,7 +1514,6 @@ gtk_scrolled_window_set_child(GTK_SCROLLED_WINDOW(sw), list); gtk_widget_set_vexpand(sw, TRUE); - gtk_widget_set_valign(sw, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(lbox), sw); } @@ -1551,7 +1549,6 @@ /* Add the talkatu history */ hpaned = gtk_paned_new(GTK_ORIENTATION_HORIZONTAL); gtk_widget_set_vexpand(hpaned, TRUE); - gtk_widget_set_valign(hpaned, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(vbox), hpaned); gtk_paned_set_start_child(GTK_PANED(hpaned), sw); gtk_paned_set_resize_start_child(GTK_PANED(hpaned), TRUE); @@ -1677,7 +1674,6 @@ gtkconv->tab_cont = tab_cont = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6); g_object_set_data(G_OBJECT(tab_cont), "PidginConversation", gtkconv); gtk_widget_set_vexpand(pane, TRUE); - gtk_widget_set_valign(pane, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(tab_cont), pane); talkatu_editor_set_toolbar_visible(
--- a/pidgin/gtkmedia.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkmedia.c Tue Aug 30 01:36:00 2022 -0500 @@ -558,7 +558,6 @@ volume_widget = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 6); progress_parent = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); gtk_widget_set_hexpand(progress_parent, TRUE); - gtk_widget_set_halign(progress_parent, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(volume_widget), progress_parent); /* Volume button */ @@ -637,9 +636,7 @@ PURPLE_MEDIA_RECV_AUDIO)) { recv_widget = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6); gtk_widget_set_hexpand(recv_widget, TRUE); - gtk_widget_set_halign(recv_widget, GTK_ALIGN_FILL); gtk_widget_set_vexpand(recv_widget, TRUE); - gtk_widget_set_valign(recv_widget, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(gtkmedia->priv->display), recv_widget); } else { recv_widget = gtkmedia->priv->recv_widget; @@ -648,12 +645,9 @@ && type & (PURPLE_MEDIA_SEND_VIDEO | PURPLE_MEDIA_SEND_AUDIO)) { send_widget = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6); - gtk_widget_set_halign(send_widget, GTK_ALIGN_FILL); - gtk_widget_set_valign(send_widget, GTK_ALIGN_FILL); gtk_box_prepend(GTK_BOX(gtkmedia->priv->display), send_widget); button_widget = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 6); - gtk_widget_set_valign(button_widget, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(send_widget), button_widget); /* Hold button */ @@ -684,7 +678,6 @@ } g_object_get(G_OBJECT(sink), "widget", &remote_video, NULL); gtk_widget_show(remote_video); - gtk_widget_set_valign(remote_video, GTK_ALIGN_FILL); gtk_widget_set_vexpand(remote_video, TRUE); gtk_box_append(GTK_BOX(recv_widget), remote_video); @@ -707,7 +700,6 @@ } g_object_get(G_OBJECT(sink), "widget", &local_video, NULL); gtk_widget_show(local_video); - gtk_widget_set_valign(local_video, GTK_ALIGN_FILL); gtk_widget_set_vexpand(local_video, TRUE); gtk_box_append(GTK_BOX(send_widget), local_video);
--- a/pidgin/gtknotify.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtknotify.c Tue Aug 30 01:36:00 2022 -0500 @@ -284,7 +284,6 @@ /* Add the view */ sw = gtk_scrolled_window_new(); gtk_box_append(GTK_BOX(vbox), sw); - gtk_widget_set_valign(sw, GTK_ALIGN_FILL); gtk_widget_set_vexpand(sw, TRUE); buffer = talkatu_html_buffer_new(); @@ -438,7 +437,6 @@ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); gtk_scrolled_window_set_child(GTK_SCROLLED_WINDOW(sw), treeview); - gtk_widget_set_valign(sw, GTK_ALIGN_FILL); gtk_widget_set_vexpand(sw, TRUE); gtk_box_append(GTK_BOX(vbox), sw);
--- a/pidgin/gtkpluginpref.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkpluginpref.c Tue Aug 30 01:36:00 2022 -0500 @@ -145,7 +145,6 @@ G_CALLBACK(multiline_cb), NULL); */ gtk_box_append(GTK_BOX(hbox), editor); - gtk_widget_set_halign(editor, GTK_ALIGN_FILL); gtk_widget_set_hexpand(editor, TRUE); }
--- a/pidgin/gtkrequest.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkrequest.c Tue Aug 30 01:36:00 2022 -0500 @@ -551,7 +551,6 @@ /* Vertical box */ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 12); - gtk_widget_set_halign(vbox, GTK_ALIGN_FILL); gtk_widget_set_hexpand(vbox, TRUE); gtk_box_append(GTK_BOX(hbox), vbox); @@ -589,7 +588,6 @@ gtk_widget_set_size_request(input, 320, 130); gtk_widget_set_name(input, "pidgin_request_input"); - gtk_widget_set_valign(editor, GTK_ALIGN_FILL); gtk_widget_set_vexpand(editor, TRUE); gtk_box_append(GTK_BOX(vbox), editor); @@ -732,7 +730,6 @@ gtk_label_set_wrap(GTK_LABEL(label), TRUE); gtk_label_set_xalign(GTK_LABEL(label), 0); gtk_label_set_yalign(GTK_LABEL(label), 0); - gtk_widget_set_valign(label, GTK_ALIGN_FILL); gtk_widget_set_vexpand(label, TRUE); gtk_box_append(GTK_BOX(vbox), label); @@ -877,7 +874,6 @@ gtk_label_set_xalign(GTK_LABEL(label), 0); gtk_label_set_yalign(GTK_LABEL(label), 0); gtk_label_set_selectable(GTK_LABEL(label), TRUE); - gtk_widget_set_valign(label, GTK_ALIGN_FILL); gtk_widget_set_vexpand(label, TRUE); gtk_box_append(GTK_BOX(vbox), label); @@ -994,7 +990,6 @@ gtk_label_set_xalign(GTK_LABEL(label), 0); gtk_label_set_yalign(GTK_LABEL(label), 0); gtk_label_set_selectable(GTK_LABEL(label), FALSE); - gtk_widget_set_valign(label, GTK_ALIGN_FILL); gtk_widget_set_vexpand(label, TRUE); gtk_box_append(GTK_BOX(vbox), label); @@ -1345,10 +1340,8 @@ values[i++] = choice->value; if(orientation == GTK_ORIENTATION_VERTICAL) { - gtk_widget_set_valign(radio, GTK_ALIGN_FILL); gtk_widget_set_vexpand(radio, TRUE); } else if(orientation == GTK_ORIENTATION_HORIZONTAL) { - gtk_widget_set_halign(radio, GTK_ALIGN_FILL); gtk_widget_set_hexpand(radio, TRUE); } @@ -1862,7 +1855,6 @@ GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); gtk_scrolled_window_set_child(GTK_SCROLLED_WINDOW(scrollable), GTK_WIDGET(view)); - gtk_widget_set_halign(scrollable, GTK_ALIGN_FILL); gtk_widget_set_hexpand(scrollable, TRUE); gtk_box_append(GTK_BOX(main_box), scrollable); @@ -1994,7 +1986,6 @@ /* Setup the vbox */ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 12); - gtk_widget_set_halign(vbox, GTK_ALIGN_FILL); gtk_widget_set_hexpand(vbox, TRUE); gtk_box_append(GTK_BOX(hbox), vbox); @@ -2089,12 +2080,6 @@ "vexpand", contains_resizable, NULL); - if(contains_resizable) { - g_object_set(G_OBJECT(grid), - "halign", GTK_ALIGN_FILL, - "valign", GTK_ALIGN_FILL, - NULL); - } gtk_box_append(GTK_BOX(frame), grid); for (row_num = 0, fl = field_list;
--- a/pidgin/gtkutils.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/gtkutils.c Tue Aug 30 01:36:00 2022 -0500 @@ -795,11 +795,9 @@ gtk_box_append(GTK_BOX(hbox), label); gtk_widget_set_hexpand(widget, expand); - gtk_widget_set_halign(widget, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(hbox), widget); } else { gtk_widget_set_vexpand(widget, expand); - gtk_widget_set_valign(widget, GTK_ALIGN_FILL); gtk_box_append(vbox, widget); hbox = GTK_WIDGET(vbox);
--- a/pidgin/pidginaddchatdialog.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/pidginaddchatdialog.c Tue Aug 30 01:36:00 2022 -0500 @@ -150,12 +150,10 @@ label = gtk_label_new_with_mnemonic(pce->label); gtk_label_set_xalign(GTK_LABEL(label), 0.0f); gtk_label_set_yalign(GTK_LABEL(label), 0.0f); - gtk_widget_set_halign(label, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(box), label); gtk_size_group_add_widget(dialog->sg, label); gtk_widget_set_hexpand(input, TRUE); - gtk_widget_set_halign(input, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(box), input); if(!focus_set) { gtk_widget_grab_focus(input);
--- a/pidgin/plugins/spellchk.c Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/plugins/spellchk.c Tue Aug 30 01:36:00 2022 -0500 @@ -2188,7 +2188,6 @@ GTK_POLICY_ALWAYS); gtk_scrolled_window_set_child(GTK_SCROLLED_WINDOW(sw), tree); gtk_widget_set_vexpand(sw, TRUE); - gtk_widget_set_valign(sw, GTK_ALIGN_FILL); gtk_box_append(GTK_BOX(vbox), sw); hbox = gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL);
--- a/pidgin/plugins/xmppconsole/console.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/plugins/xmppconsole/console.ui Tue Aug 30 01:36:00 2022 -0500 @@ -111,7 +111,6 @@ <object class="PidginAccountChooser"> <property name="model">connected_xmpp_accounts</property> <property name="active">0</property> - <property name="halign">fill</property> <property name="hexpand">1</property> <signal name="changed" handler="dropdown_changed_cb" object="PidginXmppConsole" swapped="no"/> </object> @@ -120,7 +119,6 @@ </child> <child> <object class="GtkScrolledWindow"> - <property name="valign">fill</property> <property name="vexpand">1</property> <property name="focusable">1</property> <property name="child">
--- a/pidgin/resources/About/about.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/About/about.ui Tue Aug 30 01:36:00 2022 -0500 @@ -61,7 +61,6 @@ <child> <object class="GtkBox"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="orientation">vertical</property> <property name="spacing">5</property> <child> @@ -84,7 +83,6 @@ <child> <object class="GtkStack" id="stack"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="width-request">400</property> <property name="height-request">150</property> <property name="margin-bottom">2</property> @@ -239,7 +237,6 @@ <object class="GtkStackSwitcher" id="switcher"> <property name="stack">stack</property> <property name="hexpand">1</property> - <property name="halign">fill</property> </object> </child> <child> @@ -248,7 +245,6 @@ <property name="focusable">1</property> <property name="receives-default">1</property> <property name="hexpand">1</property> - <property name="halign">fill</property> </object> </child> </object>
--- a/pidgin/resources/Accounts/manager.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Accounts/manager.ui Tue Aug 30 01:36:00 2022 -0500 @@ -48,7 +48,6 @@ <child internal-child="content_area"> <object class="GtkScrolledWindow"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="focusable">1</property> <child> <object class="GtkTreeView">
--- a/pidgin/resources/Conversations/infopane.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Conversations/infopane.ui Tue Aug 30 01:36:00 2022 -0500 @@ -35,7 +35,6 @@ <child> <object class="GtkBox"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="orientation">vertical</property> <child> <object class="GtkLabel" id="name">
--- a/pidgin/resources/Conversations/invite_dialog.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Conversations/invite_dialog.ui Tue Aug 30 01:36:00 2022 -0500 @@ -32,7 +32,6 @@ <child> <object class="GtkGrid"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="margin-bottom">6</property> <property name="row-spacing">6</property> <child>
--- a/pidgin/resources/Dialogs/addbuddy.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Dialogs/addbuddy.ui Tue Aug 30 01:36:00 2022 -0500 @@ -65,7 +65,6 @@ <child> <object class="PidginAccountChooser" id="account"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="model">filter</property> <signal name="changed" handler="pidgin_add_buddy_dialog_account_changed_cb" object="PidginAddBuddyDialog" swapped="no"/> <accessibility> @@ -90,7 +89,6 @@ <child> <object class="GtkEntry" id="username"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> <property name="activates-default">1</property> <signal name="changed" handler="pidgin_add_buddy_dialog_username_changed_cb" object="PidginAddBuddyDialog" swapped="no"/> @@ -116,7 +114,6 @@ <child> <object class="GtkEntry" id="alias"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> <accessibility> <relation name="labelled-by">label3</relation> @@ -140,7 +137,6 @@ <child> <object class="GtkEntry" id="message"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="sensitive">0</property> <property name="focusable">1</property> <accessibility> @@ -164,7 +160,6 @@ <child> <object class="GtkComboBoxText" id="group"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="has-entry">1</property> <property name="child"> <object class="GtkEntry">
--- a/pidgin/resources/Dialogs/addchat.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Dialogs/addchat.ui Tue Aug 30 01:36:00 2022 -0500 @@ -61,13 +61,11 @@ <property name="mnemonic-widget">account</property> <property name="xalign">0</property> <property name="yalign">0</property> - <property name="halign">fill</property> </object> </child> <child> <object class="PidginAccountChooser" id="account"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="model">filter</property> <signal name="changed" handler="pidgin_add_chat_dialog_account_changed_cb" object="PidginAddChatDialog" swapped="no"/> </object> @@ -79,7 +77,6 @@ <property name="orientation">vertical</property> <property name="spacing">6</property> <property name="hexpand">1</property> - <property name="halign">fill</property> <child> <placeholder/> </child> @@ -95,13 +92,11 @@ <property name="mnemonic-widget">alias</property> <property name="xalign">0</property> <property name="yalign">0</property> - <property name="halign">fill</property> </object> </child> <child> <object class="GtkEntry" id="alias"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> </object> </child> @@ -116,13 +111,11 @@ <property name="use-underline">1</property> <property name="xalign">0</property> <property name="yalign">0</property> - <property name="halign">fill</property> </object> </child> <child> <object class="GtkComboBoxText" id="group"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="has-entry">1</property> <property name="child"> <object class="GtkEntry">
--- a/pidgin/resources/Media/window.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Media/window.ui Tue Aug 30 01:36:00 2022 -0500 @@ -46,7 +46,6 @@ <child> <object class="GtkBox" id="display"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="orientation">vertical</property> <property name="spacing">6</property> <child>
--- a/pidgin/resources/Notifications/list.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Notifications/list.ui Tue Aug 30 01:36:00 2022 -0500 @@ -28,7 +28,6 @@ <child> <object class="GtkListBox" id="list_box"> <property name="vexpand">1</property> - <property name="valign">fill</property> <child type="placeholder"> <object class="AdwStatusPage"> <property name="visible">True</property>
--- a/pidgin/resources/Plugins/dialog.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Plugins/dialog.ui Tue Aug 30 01:36:00 2022 -0500 @@ -32,7 +32,6 @@ <child> <object class="GPluginGtkView" id="view"> <property name="vexpand">1</property> - <property name="valign">fill</property> </object> </child> </object>
--- a/pidgin/resources/Prefs/network.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Prefs/network.ui Tue Aug 30 01:36:00 2022 -0500 @@ -54,7 +54,6 @@ <property name="use-underline">1</property> <child> <object class="GtkEntry" id="stun_server"> - <property name="halign">fill</property> <property name="hexpand">1</property> <property name="valign">center</property> <property name="focusable">1</property>
--- a/pidgin/resources/Privacy/dialog.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Privacy/dialog.ui Tue Aug 30 01:36:00 2022 -0500 @@ -65,7 +65,6 @@ <child> <object class="PidginAccountChooser" id="account_chooser"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="model">connected_account_store</property> <property name="active">0</property> <signal name="changed" handler="select_account_cb" object="PidginPrivacyDialog" swapped="no"/> @@ -78,14 +77,12 @@ </child> <child> <object class="GtkComboBoxText" id="type_menu"> - <property name="valign">fill</property> <signal name="changed" handler="type_changed_cb" object="PidginPrivacyDialog" swapped="no"/> </object> </child> <child> <object class="GtkScrolledWindow" id="allow_widget"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="height-request">200</property> <property name="focusable">1</property> <property name="child"> @@ -118,7 +115,6 @@ <child> <object class="GtkScrolledWindow" id="block_widget"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="height-request">200</property> <property name="focusable">1</property> <property name="child">
--- a/pidgin/resources/Roomlist/roomlist.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Roomlist/roomlist.ui Tue Aug 30 01:36:00 2022 -0500 @@ -49,7 +49,6 @@ <property name="can-focus">1</property> <property name="model">accounts</property> <property name="active">0</property> - <property name="halign">fill</property> <signal name="changed" handler="dialog_select_account_cb" object="PidginRoomlistDialog" swapped="no"/> <accessibility> <relation name="labelled-by">label1</relation>
--- a/pidgin/resources/Status/editor.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Status/editor.ui Tue Aug 30 01:36:00 2022 -0500 @@ -39,7 +39,6 @@ <child> <object class="GtkBox"> <property name="vexpand">1</property> - <property name="valign">GTK_ALIGN_FILL</property> <child> <object class="GtkLabel" id="label1"> <property name="label" translatable="1">_Title:</property> @@ -52,7 +51,6 @@ <child> <object class="GtkEntry" id="title"> <property name="hexpand">1</property> - <property name="halign">GTK_ALIGN_FILL</property> <property name="focusable">1</property> <signal name="changed" handler="pidgin_status_editor_title_changed_cb" object="PidginStatusEditor" swapped="no"/> </object> @@ -62,7 +60,6 @@ <child> <object class="GtkBox"> <property name="vexpand">1</property> - <property name="valign">GTK_ALIGN_FILL</property> <child> <object class="GtkLabel" id="label2"> <property name="label" translatable="1">St_atus:</property> @@ -75,7 +72,6 @@ <child> <object class="PidginStatusPrimitiveChooser" id="primitive"> <property name="hexpand">1</property> - <property name="halign">GTK_ALIGN_FILL</property> <property name="id-column">0</property> <property name="model">primitive_store</property> </object> @@ -85,7 +81,6 @@ <child> <object class="GtkBox"> <property name="vexpand">1</property> - <property name="valign">GTK_ALIGN_FILL</property> <child> <object class="GtkLabel" id="label3"> <property name="label" translatable="1">_Message:</property> @@ -97,10 +92,8 @@ </child> <child> <object class="TalkatuEditor"> - <property name="halign">GTK_ALIGN_FILL</property> <property name="hexpand">1</property> <property name="orientation">vertical</property> - <property name="valign">GTK_ALIGN_FILL</property> <property name="vexpand">1</property> <child internal-child="send_button"> <object class="GtkButton"> @@ -113,9 +106,7 @@ <child internal-child="input"> <object class="TalkatuInput" id="message"> <property name="buffer">buffer</property> - <property name="halign">GTK_ALIGN_FILL</property> <property name="hexpand">1</property> - <property name="valign">GTK_ALIGN_FILL</property> <property name="vexpand">1</property> <property name="width-request">450</property> <property name="wrap-mode">word</property>
--- a/pidgin/resources/Status/manager.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/Status/manager.ui Tue Aug 30 01:36:00 2022 -0500 @@ -48,7 +48,6 @@ <child internal-child="content_area"> <object class="GtkScrolledWindow"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="focusable">1</property> <child> <object class="GtkTreeView">
--- a/pidgin/resources/presenceicon.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/presenceicon.ui Tue Aug 30 01:36:00 2022 -0500 @@ -27,7 +27,6 @@ <child> <object class="GtkImage" id="icon"> <property name="vexpand">1</property> - <property name="valign">fill</property> <property name="icon-name">image-missing</property> <property name="use-fallback">1</property> <property name="icon_size">large</property>
--- a/pidgin/resources/proxyoptions.ui Tue Aug 30 00:54:46 2022 -0500 +++ b/pidgin/resources/proxyoptions.ui Tue Aug 30 01:36:00 2022 -0500 @@ -88,7 +88,6 @@ <child> <object class="GtkComboBox" id="proxy_type"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="model">filter</property> <signal name="changed" handler="pidgin_proxy_options_proxy_type_changed_cb" object="PidginProxyOptions" swapped="no"/> <child> @@ -120,7 +119,6 @@ <child> <object class="GtkEntry" id="hostname"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> </object> </child> @@ -140,7 +138,6 @@ <child> <object class="GtkSpinButton" id="port"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> <property name="adjustment">port_adjustment</property> <property name="numeric">1</property> @@ -162,7 +159,6 @@ <child> <object class="GtkEntry" id="username"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> </object> </child> @@ -182,7 +178,6 @@ <child> <object class="GtkPasswordEntry" id="password"> <property name="hexpand">1</property> - <property name="halign">fill</property> <property name="focusable">1</property> <property name="show-peek-icon">1</property> </object>