Skip to content

Better TextButton control default values #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/qml/controls/TextButton.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import QtQuick.Controls 2.15
Button {
id: root
property int textSize: 18
property string textColor: Theme.color.neutral9
property string textColor: Theme.color.orange
property bool bold: true
property bool rightalign: false
font.family: "Inter"
Expand Down
6 changes: 1 addition & 5 deletions src/qml/pages/onboarding/OnboardingConnection.qml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,7 @@ Page {
detailActive: true
detailItem: TextButton {
text: qsTr("Connection settings")
textSize: 18
textColor: Theme.color.orange
onClicked: {
connections.incrementCurrentIndex()
}
onClicked: connections.incrementCurrentIndex()
}
lastPage: true
buttonText: qsTr("Next")
Expand Down
6 changes: 1 addition & 5 deletions src/qml/pages/onboarding/OnboardingStorageAmount.qml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ Page {
Layout.topMargin: 30
Layout.fillWidth: true
text: qsTr("Detailed settings")
textSize: 18
textColor: "#F7931A"
onClicked: {
storages.incrementCurrentIndex()
}
onClicked: storages.incrementCurrentIndex()
}
}
buttonText: qsTr("Next")
Expand Down