Install gobject introspection files in correct dir
[projects/chimara/chimara.git] / tests / test-userstyle.c
index c3a32c465f75f3af6e381abf56fb5420b0f283c2..4f7b5f66087a41893b91df297db9e615da0a2481 100644 (file)
@@ -7,7 +7,7 @@ glk_main(void)
 {
        /* Create user style before creating windows */
        glk_stylehint_set(wintype_AllTypes, style_User1, stylehint_Size, -1);
-       glk_stylehint_set(wintype_AllTypes, style_User2, stylehint_Size, 0);
+       glk_stylehint_set(wintype_AllTypes, style_User2, stylehint_Size, +1);
        
        mainwin = glk_window_open(0, 0, 0, wintype_TextBuffer, 0);
        if(!mainwin)
@@ -19,7 +19,7 @@ glk_main(void)
        glk_set_style(style_Normal);
        glk_put_string(".\n");
        glk_set_style(style_User2);
-       glk_put_string("This test is in User2 at normal size");
+       glk_put_string("This text is in User2 and slightly larger");
        glk_set_style(style_Normal);
        glk_put_string(".\n");
 }