mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Merge pull request #1215 from foxB612/fix-thumbnail-size
Fix UploadBox thumbnail size
This commit is contained in:
commit
5be8298d0a
1 changed files with 3 additions and 2 deletions
|
@ -48,8 +48,8 @@ Page {
|
|||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
|
||||
sourceSize.height: height
|
||||
sourceSize.width: width
|
||||
sourceSize.height: parent.availableHeight - namefield.height
|
||||
sourceSize.width: parent.availableWidth
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
mipmap: true
|
||||
|
@ -63,6 +63,7 @@ Page {
|
|||
source: (modelData.thumbnail != "") ? modelData.thumbnail : ("image://colorimage/:/icons/icons/ui/"+typeStr+".svg?" + Nheko.colors.buttonText)
|
||||
}
|
||||
MatrixTextField {
|
||||
id: namefield
|
||||
Layout.fillWidth: true
|
||||
text: modelData.filename
|
||||
onTextEdited: modelData.filename = text
|
||||
|
|
Loading…
Reference in a new issue