diff options
| -rw-r--r-- | node/scalaroperatornode.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/node/scalaroperatornode.cpp b/node/scalaroperatornode.cpp index dc84c52..268d6b8 100644 --- a/node/scalaroperatornode.cpp +++ b/node/scalaroperatornode.cpp @@ -198,6 +198,10 @@ qint64 ScalarOperatorNode::getPriority() const { return 1; } + else if(m_arithmeticOperator == Die::POW) + { + return 3; + } else { return 2; |