Skip to content

Commit

Permalink
Fix WelcomeTab
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Apr 9, 2020
1 parent 1a2fe23 commit f643035
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/qml/WelcomeTab.qml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ BetterTab {
}

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

Expand Down

0 comments on commit f643035

Please sign in to comment.