mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
Cap the maximum width of the error dialogs
This commit is contained in:
parent
c724902508
commit
bc38c302ed
1 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
import QtQuick 2.0
|
||||
import QtQuick.Controls 2.2
|
||||
import QtQuick.Layouts 1.2
|
||||
|
||||
import SystemProperties 1.0
|
||||
|
||||
|
@ -11,7 +12,7 @@ NavigableDialog {
|
|||
property string helpText
|
||||
property string helpUrl : "https://github.com/moonlight-stream/moonlight-docs/wiki/Troubleshooting"
|
||||
|
||||
Row {
|
||||
RowLayout {
|
||||
spacing: 10
|
||||
|
||||
Image {
|
||||
|
@ -33,7 +34,9 @@ NavigableDialog {
|
|||
wrapMode: Text.WordWrap
|
||||
focus: true
|
||||
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
// Cap the width so the dialog doesn't grow horizontally forever. This
|
||||
// will cause word wrap to kick in.
|
||||
Layout.maximumWidth: 400
|
||||
|
||||
Keys.onReturnPressed: {
|
||||
accept()
|
||||
|
|
Loading…
Reference in a new issue