From b45a25b82fdbfd513dfd547be182c707a7305511 Mon Sep 17 00:00:00 2001 From: Daniel Shiffman Date: Thu, 2 May 2013 12:03:04 -0400 Subject: [PATCH] minor change to thread example --- java/examples/Topics/Advanced Data/Threads/Threads.pde | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/java/examples/Topics/Advanced Data/Threads/Threads.pde b/java/examples/Topics/Advanced Data/Threads/Threads.pde index ebcd7a40a..139cc6404 100644 --- a/java/examples/Topics/Advanced Data/Threads/Threads.pde +++ b/java/examples/Topics/Advanced Data/Threads/Threads.pde @@ -40,7 +40,6 @@ String allData; void setup() { size(640, 360); - smooth(); // Spawn the thread! thread("loadData"); } @@ -60,7 +59,7 @@ void draw() { // The size of the rectangle is mapped to the percentage completed float w = map(percent, 0, 1, 0, 300); rect(width/2-150, height/2, w, 10); - textSize(14); + textSize(16); textAlign(CENTER); fill(255); text("Loading", width/2, height/2+30);