Skip to content

Commit

Permalink
Remove commented out QML
Browse files Browse the repository at this point in the history
  • Loading branch information
ervanalb committed Jul 20, 2019
1 parent 9b0c43e commit 198e25b
Showing 1 changed file with 0 additions and 55 deletions.
55 changes: 0 additions & 55 deletions resources/qml/EffectNodeTile.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ VideoNodeTile {
id: tile;
property alias intensity: slider.value;
property alias slider: slider;
//property alias sliderGhost: sliderGhost;
property int attachedParameter: -1

onVideoNodeChanged: {
Expand Down Expand Up @@ -54,65 +53,11 @@ VideoNodeTile {
FrequencyDropDown {
id: frequencyCombo;
}
/*
ComboBox {
visible: false
id: frequencyCombo;
model: [0, 0.25, 0.5, 1, 2, 4, 8, 16, 32]
style: ComboBoxStyle {
id: comboBox
background: Rectangle {
id: rectCategory
implicitWidth: textMetrics.width * 5
implicitHeight: textMetrics.height * 1.3
color: "transparent"
border.width: 1
border.color: "white"
radius: 15
TextMetrics {
id: textMetrics
text: "X"
font.pixelSize: 16
}
}
label: Text {
id: labelText
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
color: "white"
text: control.currentText
font.pixelSize: 16
}
}
}*/

Label {
text: attachedParameter >= 0 ? "#" + attachedParameter : "";
color: RadianceStyle.tileTextColor;
}
}

/*
ProgressBar {
id: sliderGhost;
Layout.fillWidth: true;
minimumValue: 0;
maximumValue: 1;
}
*/

/* No MIDI indicator until we actually need it
Slider {
// TODO: How do we make this indicator-only?
id: sliderGhost;
Layout.fillWidth: true;
minimumValue: 0;
maximumValue: 1;
style: SliderStyle {
handle: Rectangle {}
}
}
*/
}

Loader {
Expand Down

0 comments on commit 198e25b

Please sign in to comment.