summaryrefslogtreecommitdiff
path: root/qml/ForumPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/ForumPage.qml')
-rw-r--r--qml/ForumPage.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/qml/ForumPage.qml b/qml/ForumPage.qml
index 4f2b64f..6c21742 100644
--- a/qml/ForumPage.qml
+++ b/qml/ForumPage.qml
@@ -19,6 +19,16 @@ Page {
}
ToolIcon {
platformIconId: "toolbar-add"
+ onClicked: {
+ var component = Qt.createComponent("NewTopicSheet.qml");
+ if (component.status === Component.Ready) {
+ var sheet = component.createObject(forumPage, {
+ "board": board,
+ "forumId": forumId
+ });
+ sheet.open();
+ }
+ }
}
ToolIcon {
platformIconId: board.busy ? "toolbar-cancle" : "toolbar-refresh"