mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 01:24:36 +02:00
Fix Pal Master Volume overlap
This commit is contained in:
parent
b1790cccbe
commit
e54f7d5a45
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue