From 15e305e658cfbeabf5eb0f06cf5703c5c513c8d8 Mon Sep 17 00:00:00 2001 From: Jeena Date: Mon, 16 Feb 2015 01:40:03 +0100 Subject: [PATCH] added settings category and org --- main.cpp | 3 +++ main.qml | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/main.cpp b/main.cpp index b85fa71..959b088 100644 --- a/main.cpp +++ b/main.cpp @@ -12,6 +12,9 @@ int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); + app.setOrganizationName("Jabs Nu"); + app.setOrganizationDomain("jabs.nu"); + app.setApplicationName("FeedMonkey"); qmlRegisterType("TTRSS", 1, 0, "ServerLogin"); qmlRegisterType("TTRSS", 1, 0, "Server"); diff --git a/main.qml b/main.qml index 6383188..27cd149 100644 --- a/main.qml +++ b/main.qml @@ -10,11 +10,17 @@ ApplicationWindow { title: "FeedMonkey" visible: true + width: 800 + height: 640 + x: 200 + y: 200 + property Server server: server property Sidebar sidebar: sidebar property Content content: content Settings { + category: "window" property alias x: app.x property alias y: app.y property alias width: app.width