Skip to content

Commit

Permalink
Changes name of the qml file to match functionality.
Browse files Browse the repository at this point in the history
  • Loading branch information
francocipollone committed May 5, 2021
1 parent 273d470 commit af4538a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import QtQuick.Layouts 1.3

// Table to list the lanes of the road network.
GridLayout {
id: selectedLanesPanel
id: lanesListPanel
columns: 1
anchors.left: parent.left
anchors.leftMargin: 10
Expand Down
10 changes: 5 additions & 5 deletions delphyne_gui/visualizer/MaliputViewerPlugin.qml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Rectangle {
anchors.right: parent.right
}
ToolSeparator {
id: selectedLanesSeparator
id: labelsLoaderSeparator
orientation: Qt.Horizontal
anchors.top: labelsLoader.bottom
anchors.topMargin: 15
Expand All @@ -66,12 +66,12 @@ Rectangle {
anchors.right: parent.right
anchors.rightMargin: 10
}
// Selected Lanes Panel
// Lanes List Panel
Loader {
id: selectedLanesLoader
id: lanesListLoader
width: parent.width
source: "SelectedLanesArea.qml"
anchors.top: selectedLanesSeparator.bottom
source: "LanesListArea.qml"
anchors.top: labelsLoader.bottom
anchors.left: parent.left
anchors.right: parent.right
}
Expand Down
2 changes: 1 addition & 1 deletion delphyne_gui/visualizer/maliput_viewer_plugin.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<file>FileSelectionArea.qml</file>
<file>LayersSelectionArea.qml</file>
<file>LabelsSelectionArea.qml</file>
<file>SelectedLanesArea.qml</file>
<file>LanesListArea.qml</file>
</qresource>
</RCC>

0 comments on commit af4538a

Please sign in to comment.