From 9f15dae5b297557d96c10967a2432e0e4407ed51 Mon Sep 17 00:00:00 2001
From: Devine Lu Linvega <aliceffekt@gmail.com>
Date: Sun, 28 Jul 2019 07:09:36 +0900
Subject: [PATCH] Fixed issue with guides

---
 desktop/sources/scripts/commander.js |  2 +-
 desktop/sources/scripts/surface.js   | 16 ++++++++--------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/desktop/sources/scripts/commander.js b/desktop/sources/scripts/commander.js
index 283195f..0ad259d 100644
--- a/desktop/sources/scripts/commander.js
+++ b/desktop/sources/scripts/commander.js
@@ -213,7 +213,7 @@ function Commander (ronin) {
 
   // Splash
 
-  this.splash = `; welcome to ronin - v2.21
+  this.splash = `; welcome to ronin - v2.23
 (clear) 
 (def frame-rect 
   (frame))
diff --git a/desktop/sources/scripts/surface.js b/desktop/sources/scripts/surface.js
index 4005665..661b693 100644
--- a/desktop/sources/scripts/surface.js
+++ b/desktop/sources/scripts/surface.js
@@ -179,14 +179,14 @@ function Surface (ronin) {
 
   this.drawGuide = function (shape, color = 'white', context = this.guide) {
     if (!shape) { return }
-    this.stroke(shape.rect || shape, 4, 'black', context)
-    if (shape.pos) { this.stroke(shape.pos, 4, 'black', context) }
-    if (shape.line) { this.stroke(shape.line, 4, 'black', context) }
-    if (shape.circle) { this.stroke(shape.circle, 4, 'black', context) }
-    this.stroke(shape.rect || shape, 1.5, color, context)
-    if (shape.pos) { this.stroke(shape.pos, 1.5, color, context) }
-    if (shape.line) { this.stroke(shape.line, 1.5, color, context) }
-    if (shape.circle) { this.stroke(shape.circle, 1.5, color, context) }
+    this.stroke(shape.rect || shape, 'black', 4, context)
+    if (shape.pos) { this.stroke(shape.pos, 'black', 4, context) }
+    if (shape.line) { this.stroke(shape.line, 'black', 4, context) }
+    if (shape.circle) { this.stroke(shape.circle, 'black', 4, context) }
+    this.stroke(shape.rect || shape, color, 1.5, context)
+    if (shape.pos) { this.stroke(shape.pos, color, 1.5, context) }
+    if (shape.line) { this.stroke(shape.line, color, 1.5, context) }
+    if (shape.circle) { this.stroke(shape.circle, color, 1.5, context) }
   }
 
   this.clone = function (a, b) {