aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-10-22 16:39:15 -0200
committerSamuel Fadel <samuelfadel@gmail.com>2015-10-22 16:39:15 -0200
commitad4fbabeca2cbdf4cb47f1a923183027494ab0a8 (patch)
tree4a9c16454ff4d802b23a8271f4005ee1846f7b1b /main_view.qml
parent99ac0af03e1695ba4de2c42e949fce61b84850e5 (diff)
Added PLMP as an alternative technique to use; knn() is now exposed in the mp namespace.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/main_view.qml b/main_view.qml
index de9ec64..0cd29b5 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -21,7 +21,7 @@ ApplicationWindow {
Menu {
title: "View"
MenuItem {
- action: noneColorAction
+ action: labelColorAction
exclusiveGroup: coloringGroup
}
MenuItem {
@@ -111,12 +111,12 @@ ApplicationWindow {
id: coloringGroup
Action {
- id: noneColorAction
- text: "None"
- shortcut: "Shift+O"
+ id: labelColorAction
+ text: "Labels"
+ shortcut: "Shift+L"
checked: true
checkable: true
- onTriggered: console.log("None")
+ onTriggered: console.log("Labels")
}
Action {