From b11fbbb54c948a074b1a86b30fadd198c0c919c5 Mon Sep 17 00:00:00 2001
From: Sébastien Dailly <sebastien@chimrod.com>
Date: Tue, 26 Aug 2014 21:04:15 +0200
Subject: Graphic correction

---
 qml/pages/Goban.qml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qml/pages/Goban.qml b/qml/pages/Goban.qml
index 60c78e9..f84bb60 100644
--- a/qml/pages/Goban.qml
+++ b/qml/pages/Goban.qml
@@ -203,7 +203,7 @@ Item {
             width: goban.width - caseSize;
 
             color: "black"
-            visible: !(index === goban.rows - 1 && !limitBottom) || (index === 0 && !limitTop)
+            visible: (!((index === goban.rows - 1 && !limitBottom) || (index === 0 && !limitTop)))
             height: 1
 
         }
@@ -227,7 +227,7 @@ Item {
 
             width: 1
 
-            visible: !(index === goban.columns - 1 && !limitRight) || (index === 0 && !limitLeft);
+            visible: (!((index === goban.columns - 1 && !limitRight) || (index === 0 && !limitLeft)));
         }
 
 
-- 
cgit v1.2.3