Skip to content

Commit f643035

Browse files
committed
Fix WelcomeTab
1 parent 1a2fe23 commit f643035

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/qml/WelcomeTab.qml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ BetterTab {
2424
}
2525

2626
ColumnLayout {
27-
RichTextWithLinks { html: '<span style="font-size:32pt;">Redis Desktop Manager</span>'}
28-
RichTextWithLinks { html: '<span style="font-size: 13px;"><b>Version</b> ' + Qt.application.version +'</span>' }
29-
RichTextWithLinks { html: '<span style="font-size: 11px;">Powered by awesome <a href="https://github.com/uglide/RedisDesktopManager/tree/2019/3rdparty">open-source software</a>, '
30-
+ '<br /><a href="http://icons8.com/">icons from icons8.com</a> and '
31-
+ '<a href="http://redis.io/">Redis Logo</a>.</span>'}
27+
Layout.fillWidth: true
28+
RichTextWithLinks { Layout.fillWidth: true; html: '<span style="font-size:32pt;">Redis Desktop Manager</span>'}
29+
RichTextWithLinks { Layout.fillWidth: true; html: '<span style="font-size: 13px;"><b>Version</b> ' + Qt.application.version +'</span>' }
30+
RichTextWithLinks { Layout.fillWidth: true; html: '<span style="font-size: 11px;">Powered by awesome <a href="https://github.com/uglide/RedisDesktopManager/tree/2019/3rdparty">open-source software</a>, '
31+
+ '<br /><a href="http://icons8.com/">icons from icons8.com</a> and '
32+
+ '<a href="http://redis.io/">Redis Logo</a>.</span>'}
3233
}
3334
}
3435

0 commit comments

Comments
 (0)