From 3c92c6256fd796f24db177caf813ba52e2389ff8 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Wed, 13 Apr 2016 12:20:01 -0300 Subject: 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. --- main_view.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'main_view.qml') 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 -- cgit v1.2.3