diff options
Diffstat (limited to 'node/helpnode.cpp')
| -rw-r--r-- | node/helpnode.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/node/helpnode.cpp b/node/helpnode.cpp index a6b3c93..bdaf90e 100644 --- a/node/helpnode.cpp +++ b/node/helpnode.cpp @@ -32,7 +32,15 @@ void HelpNode::run(ExecutionNode* previous) if((nullptr == previous)&&(txtResult != nullptr)) { - txtResult->setText(QObject::tr("Rolisteam Dice Parser:\nFull documentation at: %1").arg(m_path)); + txtResult->setText(QObject::tr("Rolisteam Dice Parser:\n" + "\n" + "Example (with ! as prefix):\n" + "!2d6" + "!1d20" + "\n" + "Operator list:\n" + "\n" + "Full documentation at: %1").arg(m_path)); m_result->setPrevious(nullptr); } else if(nullptr != previous) |