From 597a59e90ce611e3e7329cbac9d88b34b47fe7d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= <juerg@scratchdisk.com> Date: Tue, 27 Dec 2011 20:40:22 +0100 Subject: [PATCH] Increase font size. --- examples/Rasters/SpiralRaster.html | 2 +- examples/Scripts/PathStructure.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Rasters/SpiralRaster.html b/examples/Rasters/SpiralRaster.html index b67b0b45..9f9d8839 100644 --- a/examples/Rasters/SpiralRaster.html +++ b/examples/Rasters/SpiralRaster.html @@ -16,7 +16,7 @@ var text = new PointText(view.bounds.bottomRight - [30, 30]); text.justification = 'right'; - text.fontSize = 10; + text.fontSize = 12; text.content = window.FileReader ? 'drag & drop an image from your desktop to rasterize it' : 'to drag & drop images, please use Webkit, Firefox, Chrome or IE 10'; diff --git a/examples/Scripts/PathStructure.html b/examples/Scripts/PathStructure.html index 6783e4ae..038ac4f0 100644 --- a/examples/Scripts/PathStructure.html +++ b/examples/Scripts/PathStructure.html @@ -17,7 +17,7 @@ var text = new PointText(); text.content = i; text.justification = 'center'; - text.fontSize = 9; + text.fontSize = 12; segmentTexts.push(text); } @@ -25,7 +25,7 @@ var handleInText = new PointText(); handleInText.content = 'handleIn'; handleInText.justification = 'center'; - handleInText.fontSize = 9; + handleInText.fontSize = 12; handleTexts.push(handleInText); var handleOutText = handleInText.clone();