Fix Pal Master Volume overlap

This commit is contained in:
luiscuenca 2018-01-10 13:03:54 -07:00
parent b1790cccbe
commit e54f7d5a45
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ Item {
id: avatarImage id: avatarImage
visible: profileUrl !== "" && userName !== ""; visible: profileUrl !== "" && userName !== "";
// Size // Size
height: isMyCard ? 70 : 42; height: isMyCard ? 84 : 42;
width: visible ? height : 0; width: visible ? height : 0;
anchors.top: parent.top; anchors.top: parent.top;
anchors.topMargin: isMyCard ? 0 : 8; anchors.topMargin: isMyCard ? 0 : 8;
@ -520,7 +520,7 @@ Item {
Slider { Slider {
id: gainSlider id: gainSlider
// Size // Size
width: thisNameCard.width; width: thisNameCard.width - 20;
height: 14 height: 14
// Anchors // Anchors
anchors.verticalCenter: nameCardVUMeter.verticalCenter; anchors.verticalCenter: nameCardVUMeter.verticalCenter;

View file

@ -28,7 +28,7 @@ Rectangle {
// Properties // Properties
property bool debug: false; property bool debug: false;
property int myCardWidth: width - upperRightInfoContainer.width; property int myCardWidth: width - upperRightInfoContainer.width;
property int myCardHeight: 80; property int myCardHeight: 100;
property int rowHeight: 60; property int rowHeight: 60;
property int actionButtonWidth: 55; property int actionButtonWidth: 55;
property int locationColumnWidth: 170; property int locationColumnWidth: 170;