Fix code wrapping and scrolling again.

This commit is contained in:
Black
2020-02-09 00:12:07 -08:00
parent c8b02cf907
commit 29e6933b4f
3 changed files with 5 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ RowLayout {
Layout.minimumHeight: 64
Layout.preferredWidth: info.w > maxWidth ? maxWidth : info.w
Layout.preferredHeight: info.w > maxWidth ? (info.h / info.w * maxWidth) : info.h
Layout.preferredHeight: info.w > maxWidth ? (info.h * maxWidth / info.w) : info.h
id: img