Remove now-superflous Column.

This commit is contained in:
howard-stearns 2016-07-15 17:01:37 -07:00
parent b106dee3e9
commit f73c2b884d
2 changed files with 20 additions and 23 deletions

View file

@ -59,7 +59,7 @@ Window {
implicitWidth: backgroundImage.width
implicitHeight: backgroundImage.height
Column {
Row {
width: backgroundImage.width;
anchors {
bottom: backgroundImage.top;
@ -67,26 +67,24 @@ Window {
right: backgroundImage.right;
rightMargin: -104; // FIXME
}
Row {
spacing: hifi.layout.spacing;
Card {
id: s0;
width: cardWidth;
height: cardHeight;
goFunction: goCard
}
Card {
id: s1;
width: cardWidth;
height: cardHeight;
goFunction: goCard
}
Card {
id: s2;
width: cardWidth;
height: cardHeight;
goFunction: goCard
}
spacing: hifi.layout.spacing;
Card {
id: s0;
width: cardWidth;
height: cardHeight;
goFunction: goCard
}
Card {
id: s1;
width: cardWidth;
height: cardHeight;
goFunction: goCard
}
Card {
id: s2;
width: cardWidth;
height: cardHeight;
goFunction: goCard
}
}

View file

@ -24,8 +24,7 @@ Rectangle {
property alias usersText: users.text;
property int textPadding: 20;
property int textSize: 24;
// FIXME: let's get our own
property string defaultPicture: "http://www.davidluke.com/wp-content/themes/david-luke/media/ims/placeholder720.gif";
property string defaultPicture: "../../images/default-domain.gif";
HifiConstants { id: hifi }
Image {
id: lobby;