diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2014-08-26 21:04:15 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2014-08-26 21:04:15 +0200 |
commit | b11fbbb54c948a074b1a86b30fadd198c0c919c5 (patch) | |
tree | 6e722e4e4616a4fa4efcc67d8f25a8ae4e9c5487 | |
parent | 53a259965bef27e9fdd4a43c6a7ebcef10087aad (diff) |
Graphic correction
-rw-r--r-- | qml/pages/Goban.qml | 4 |
1 files 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))); } |