diff options
author | Philip Chimento <philip.chimento@gmail.com> | 2014-03-18 20:42:59 -0700 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-05-02 16:54:41 -0400 |
commit | 5b5813fcdcfce7de6492019e426b60c116a74902 (patch) | |
tree | c02f0638e3fe2e3073bbaecabf01bf9a26da8c75 /tests/teststack.c | |
parent | a27b0bad86b047b3bce829b57b04b9757e5c8a0e (diff) | |
download | gtk+-5b5813fcdcfce7de6492019e426b60c116a74902.tar.gz |
stack: Add counterparts of OVER_UP_DOWN transition
The GtkStackTransitionType enum now has OVER_DOWN_UP, OVER_LEFT_RIGHT,
and OVER_RIGHT_LEFT values to complement OVER_UP_DOWN.
https://bugzilla.gnome.org/show_bug.cgi?id=726676
Diffstat (limited to 'tests/teststack.c')
-rw-r--r-- | tests/teststack.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/teststack.c b/tests/teststack.c index 76933ee1ac..bca6265a82 100644 --- a/tests/teststack.c +++ b/tests/teststack.c @@ -227,6 +227,9 @@ main (gint argc, gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "UNDER_LEFT"); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "UNDER_RIGHT"); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "OVER_UP_DOWN"); + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "OVER_DOWN_UP"); + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "OVER_LEFT_RIGHT"); + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "OVER_RIGHT_LEFT"); gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0); gtk_container_add (GTK_CONTAINER (hbox), combo); |