mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
Fix link color and nomic name.
This commit is contained in:
parent
e1159cd997
commit
70f0e86bec
6
main.qml
6
main.qml
@ -488,7 +488,7 @@ Window {
|
|||||||
text: qsTr("Check out our discord channel <a href=\"https://discord.gg/4M2QFmTt2k\">https://discord.gg/4M2QFmTt2k</a>")
|
text: qsTr("Check out our discord channel <a href=\"https://discord.gg/4M2QFmTt2k\">https://discord.gg/4M2QFmTt2k</a>")
|
||||||
onLinkActivated: { Qt.openUrlExternally("https://discord.gg/4M2QFmTt2k") }
|
onLinkActivated: { Qt.openUrlExternally("https://discord.gg/4M2QFmTt2k") }
|
||||||
color: theme.textColor
|
color: theme.textColor
|
||||||
linkColor: "#1e8cda"
|
linkColor: theme.linkColor
|
||||||
|
|
||||||
Accessible.role: Accessible.Link
|
Accessible.role: Accessible.Link
|
||||||
Accessible.name: qsTr("Discord link")
|
Accessible.name: qsTr("Discord link")
|
||||||
@ -502,10 +502,10 @@ Window {
|
|||||||
anchors.top: discordLink.bottom
|
anchors.top: discordLink.bottom
|
||||||
anchors.topMargin: 20
|
anchors.topMargin: 20
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
text: qsTr("Thanks to <a href=\"https://home.nomic.ai\">nomic.ai</a> and the community for contributing so much great data and energy!")
|
text: qsTr("Thanks to <a href=\"https://home.nomic.ai\">Nomic AI</a> and the community for contributing so much great data and energy!")
|
||||||
onLinkActivated: { Qt.openUrlExternally("https://home.nomic.ai") }
|
onLinkActivated: { Qt.openUrlExternally("https://home.nomic.ai") }
|
||||||
color: theme.textColor
|
color: theme.textColor
|
||||||
linkColor: "#1e8cda"
|
linkColor: theme.linkColor
|
||||||
|
|
||||||
Accessible.role: Accessible.Paragraph
|
Accessible.role: Accessible.Paragraph
|
||||||
Accessible.name: qsTr("Thank you blurb")
|
Accessible.name: qsTr("Thank you blurb")
|
||||||
|
@ -13,5 +13,6 @@ QtObject {
|
|||||||
property color dialogBorder: "#d1d5db"
|
property color dialogBorder: "#d1d5db"
|
||||||
property color userColor: "#ec86bf"
|
property color userColor: "#ec86bf"
|
||||||
property color assistantColor: "#10a37f"
|
property color assistantColor: "#10a37f"
|
||||||
|
property color linkColor: "white"
|
||||||
property real fontSizeLarge: Qt.application.font.pixelSize
|
property real fontSizeLarge: Qt.application.font.pixelSize
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user