diff options
author | Benjamin Otte <otte@redhat.com> | 2011-11-16 01:32:07 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-11-16 04:39:25 +0100 |
commit | 857fa847963f33a1a1173e6edd50ca7351f1c78e (patch) | |
tree | e7984a1cf02b981f2922d373ba6f60978c91acf1 /tests/a11y | |
parent | 2e48bb2ccd59161e22bc39bbf3a18b225ab50818 (diff) | |
download | gtk+-857fa847963f33a1a1173e6edd50ca7351f1c78e.tar.gz |
tests: Add an invisible column to the tree test
This one should be invisible if everything works as it should.
Diffstat (limited to 'tests/a11y')
-rw-r--r-- | tests/a11y/tree.ui | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/a11y/tree.ui b/tests/a11y/tree.ui index ea7f65b06f..d98a89fd3a 100644 --- a/tests/a11y/tree.ui +++ b/tests/a11y/tree.ui @@ -34,11 +34,24 @@ </child> <child> <object class="GtkTreeViewColumn" id="column2"> - <property name="title" translatable="yes">Column 2</property> + <property name="title" translatable="yes">invisible Column</property> + <property name="visible">false</property> <child> <object class="GtkCellRendererText" id="renderer2"> </object> <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + </child> + <child> + <object class="GtkTreeViewColumn" id="column3"> + <property name="title" translatable="yes">Column 2</property> + <child> + <object class="GtkCellRendererText" id="renderer3"> + </object> + <attributes> <attribute name="text">1</attribute> </attributes> </child> |