Merge pull request #11714 from quinnouyang/properties-popup-spacing

Added spacers and tweaked spacing in General and Dynamics settings under Properties -> Playback
This commit is contained in:
Casper Jeukendrup 2022-06-04 18:40:46 +02:00 committed by GitHub
commit 19b6289b49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 2 deletions

View file

@ -63,9 +63,13 @@ FocusScope {
spacing: 4
height: titleLabel.implicitHeight
Rectangle {
id: expandButton
anchors.verticalCenter: parent.verticalCenter
height: expandButtonIcon.height * 1.2
width: expandButtonIcon.width * 1.2
@ -74,6 +78,8 @@ FocusScope {
StyledIconLabel {
id: expandButtonIcon
anchors.verticalCenter: parent.verticalCenter
rotation: root.isExpanded ? 0 : -90
iconCode: IconCode.SMALL_ARROW_DOWN

View file

@ -44,7 +44,7 @@ Item {
width: parent.width
spacing: 4
spacing: 12
DynamicsExpandableBlank {
id: dynamicSection
@ -54,6 +54,8 @@ Item {
model: proxyModel ? proxyModel.modelByType(Inspector.TYPE_DYNAMIC) : null
}
SeparatorLine { anchors.margins: -12 }
HairpinsExpandableBlank {
navigation.panel: root.navigationPanel
navigation.row: dynamicSection.navigationRowEnd + 1

View file

@ -45,7 +45,7 @@ Item {
width: parent.width
height: childrenRect.height
spacing: 4
spacing: 12
NoteExpandableBlank {
id: noteSection
@ -55,6 +55,8 @@ Item {
model: proxyModel ? proxyModel.modelByType(Inspector.TYPE_NOTE) : null
}
SeparatorLine { anchors.margins: -12 }
ArpeggioExpandableBlank {
id:arpeggioSection
navigation.panel: root.navigationPanel
@ -63,6 +65,8 @@ Item {
model: proxyModel ? proxyModel.modelByType(Inspector.TYPE_ARPEGGIO) : null
}
SeparatorLine { anchors.margins: -12 }
FermataExpandableBlank {
id: fermataSection
navigation.panel: root.navigationPanel
@ -71,6 +75,8 @@ Item {
model: proxyModel ? proxyModel.modelByType(Inspector.TYPE_FERMATA) : null
}
SeparatorLine { anchors.margins: -12 }
PausesExpandableBlank {
id: pausesSection
navigation.panel: root.navigationPanel
@ -79,6 +85,8 @@ Item {
model: proxyModel ? proxyModel.modelByType(Inspector.TYPE_BREATH) : null
}
SeparatorLine { anchors.margins: -12 }
GlissandoExpandableBlank {
navigation.panel: root.navigationPanel
navigation.row: pausesSection.navigationRowEnd + 1