summaryrefslogtreecommitdiff
path: root/qml/pages/Goban.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/Goban.qml')
-rw-r--r--qml/pages/Goban.qml4
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)));
}