Skip to content

Commit

Permalink
fix for long file name in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit HERVIER committed Mar 19, 2013
1 parent 05e833c commit 80f2c22
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions khtsimpletext/qml/MainPage.qml
Expand Up @@ -35,7 +35,7 @@ Page {
id: fileDelegate
Rectangle {
width:parent.width
height: 80
height: Math.max(80, content.height)
anchors.leftMargin: 10
color:"white"

Expand All @@ -48,6 +48,7 @@ Page {
}

Column {
id: content
spacing: 10
anchors.leftMargin:10
anchors.left: parent.left
Expand Down Expand Up @@ -127,4 +128,4 @@ Page {
}
}

}
}

0 comments on commit 80f2c22

Please sign in to comment.