From 710c3cdb554787afa7a90a0770b47d3deda1b01f Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Sat, 26 Apr 2014 18:44:49 +0200 Subject: [PATCH] increase stroke width --- android-samples/Paint/app/main_activity.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android-samples/Paint/app/main_activity.rb b/android-samples/Paint/app/main_activity.rb index 0418707f..88218673 100644 --- a/android-samples/Paint/app/main_activity.rb +++ b/android-samples/Paint/app/main_activity.rb @@ -12,7 +12,7 @@ class PaintView < Android::View::View path.moveTo(x, y) paint = Android::Graphics::Paint.new paint.color = Android::Graphics::Color.rgb(rand(255), rand(255), rand(255)) - paint.strokeWidth = 5.0 + paint.strokeWidth = 10.0 paint.style = Android::Graphics::Paint::Style::STROKE paint.antiAlias = true @paths << [path, paint]