From 38a0525e7f20ac2e0de71962c6bf35a51c3f3d58 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 30 Jul 2020 01:08:04 -0400 Subject: [PATCH] test file update --- rezpy.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/rezpy.py b/rezpy.py index 82591cf..c74cf7b 100644 --- a/rezpy.py +++ b/rezpy.py @@ -32,7 +32,24 @@ rSimpleButton(rect(x=10, y=10, height=13, width=90), "Save",default=True) rWindParam1(rect(x = 20, y = 20, height=100, width=100), "hello") rControlList( - rThermometerControl( (5, 5, 10, 55), value = 10, scale=100) + rThermometerControl( (5, 5, 10, 55), value = 10, scale=100), + rStatTextControl( (5, 5, 10, 55), + "this is a test…", + centerJust = True, + fSquishText = True + ) +) + + +rCString( + + "this is a long string with\r\n" + "extra characters and stuff …" +) + +rTextBlock( + "\t\r\a\"\\'", + id = range(10,20) )