aboutsummaryrefslogtreecommitdiff
path: root/main_view.qml
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-04-13 12:20:01 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2016-04-13 12:20:01 -0300
commit3c92c6256fd796f24db177caf813ba52e2389ff8 (patch)
tree4f9f0c3c08c07eb2ffcaa868a3f57ff4dcc66beb /main_view.qml
parent11a58ca2c92fc3c44daa1643fbc5148bf96b407c (diff)
Bundling now supports selection.
Selection is implemented via main() updating the line plot using the current active selection. Beware of bug (issue #23). Also adds support for setting the line width, while changing the default line width to 2 pixels wide. ProjectionHistory: now reports changes to selections relative to the whole dataset, not only CPs/RPs.
Diffstat (limited to 'main_view.qml')
-rw-r--r--main_view.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/main_view.qml b/main_view.qml
index 60a85aa..ea93f77 100644
--- a/main_view.qml
+++ b/main_view.qml
@@ -593,6 +593,16 @@ ApplicationWindow {
GridLayout {
columns: 2
+ Label { text: "Line width:" }
+ SpinBox {
+ maximumValue: 100
+ minimumValue: 1
+ decimals: 1
+ stepSize: 1
+ value: bundlePlot.lineWidth
+ onValueChanged: bundlePlot.lineWidth = this.value
+ }
+
Label { text: "Opacity:" }
Slider {
tickmarksEnabled: true