diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-08-02 14:13:14 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-08-02 17:58:03 -0400 |
commit | ed13e6a41e07d424de326111e3d181430fc39f1e (patch) | |
tree | 07517c4e040f37d1a15395bcf056164d56c524a4 /tests/dialog.ui | |
parent | 7fe7d5ab4ffa2d531ce2caa9ad780ef419b4d440 (diff) | |
download | gtk+-ed13e6a41e07d424de326111e3d181430fc39f1e.tar.gz |
grid layout: Rename some properties
Rename GtkGridLayoutChild:left-attach/top-attach to
GtkGridLayoutChild:column/row. Update all users.
Fixes: #2967
Diffstat (limited to 'tests/dialog.ui')
-rw-r--r-- | tests/dialog.ui | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/dialog.ui b/tests/dialog.ui index 7d30d65ee1..18f487c92c 100644 --- a/tests/dialog.ui +++ b/tests/dialog.ui @@ -72,8 +72,8 @@ <object class="GtkLabel" id="margin"> <property name="width_request">24</property> <layout> - <property name="left_attach">0</property> - <property name="top_attach">0</property> + <property name="column">0</property> + <property name="row">0</property> </layout> </object> </child> @@ -86,8 +86,8 @@ <property name="placeholder_text" translatable="yes">optional</property> <property name="input_purpose">password</property> <layout> - <property name="left_attach">2</property> - <property name="top_attach">2</property> + <property name="column">2</property> + <property name="row">2</property> <property name="column-span">2</property> </layout> </object> @@ -100,8 +100,8 @@ <property name="activates_default">1</property> <property name="completion">name_completion</property> <layout> - <property name="left_attach">2</property> - <property name="top_attach">1</property> + <property name="column">2</property> + <property name="row">1</property> <property name="column-span">2</property> </layout> </object> @@ -128,8 +128,8 @@ </object> </child> <layout> - <property name="left_attach">3</property> - <property name="top_attach">0</property> + <property name="column">3</property> + <property name="row">0</property> </layout> </object> </child> @@ -137,8 +137,8 @@ <object class="GtkComboBoxText" id="connection_combo"> <property name="hexpand">1</property> <layout> - <property name="left_attach">2</property> - <property name="top_attach">0</property> + <property name="column">2</property> + <property name="row">0</property> </layout> </object> </child> @@ -149,8 +149,8 @@ <property name="use_underline">1</property> <property name="mnemonic_widget">connection_combo</property> <layout> - <property name="left_attach">1</property> - <property name="top_attach">0</property> + <property name="column">1</property> + <property name="row">0</property> </layout> </object> </child> @@ -162,8 +162,8 @@ <property name="use_underline">1</property> <property name="mnemonic_widget">name_entry</property> <layout> - <property name="left_attach">1</property> - <property name="top_attach">1</property> + <property name="column">1</property> + <property name="row">1</property> </layout> </object> </child> @@ -174,8 +174,8 @@ <property name="use_underline">1</property> <property name="mnemonic_widget">password_entry</property> <layout> - <property name="left_attach">1</property> - <property name="top_attach">2</property> + <property name="column">1</property> + <property name="row">2</property> </layout> </object> </child> |