diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-04-26 09:16:25 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-04-26 09:16:25 -0400 |
commit | 56565b12d881a199d88befaf4ce81b9ac074a756 (patch) | |
tree | 50002230efc6f2385d8d53fa0a22694be376b1ea | |
parent | ae7fd6f12984e579464d276abe085e5ba3ce6f98 (diff) | |
download | gtk+-56565b12d881a199d88befaf4ce81b9ac074a756.tar.gz |
reftests: Fix the window-show-contents-on-map test
Despite the name, the test was not in fact showing
contents on map anymore, since widgets are visible
by default. Setting visible to FALSE makes the test
work as expected again.
-rw-r--r-- | testsuite/reftests/window-show-contents-on-map.ui | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/reftests/window-show-contents-on-map.ui b/testsuite/reftests/window-show-contents-on-map.ui index 89d56bbd68..ec617ace22 100644 --- a/testsuite/reftests/window-show-contents-on-map.ui +++ b/testsuite/reftests/window-show-contents-on-map.ui @@ -6,6 +6,7 @@ <signal name="map" handler="gtk_widget_show" object="label1" after="yes" swapped="yes"/> <child> <object class="GtkLabel" id="label1"> + <property name="visible">0</property> <property name="label" translatable="yes">This label is only shown when the window is mapped. So the window does its first size allocation without the label being visible and has to resize.</property> <property name="width_chars">20</property> <property name="wrap">1</property> |