Added profiles import/export, reorganized settings, fixes, fixes and fixes #195

Merged
Swordfish90 merged 16 commits from unstable into master 2014-12-26 23:43:50 +01:00
Showing only changes of commit 7dd61c89fc - Show all commits

View File

@ -82,12 +82,12 @@ ApplicationWindow{
Action{
id: copyAction
text: qsTr("Copy")
shortcut: Qt.platform.os === "osx" ? "Ctrl+C" : "Ctrl+Shift+C"
shortcut: Qt.platform.os === "osx" ? StandardKey.Copy : "Ctrl+Shift+C"
}
Action{
id: pasteAction
text: qsTr("Paste")
shortcut: Qt.platform.os === "osx" ? "Ctrl+V" : "Ctrl+Shift+V"
shortcut: Qt.platform.os === "osx" ? StandardKey.Paste : "Ctrl+Shift+V"
}
Action{
id: zoomIn