Skip to content

Commit

Permalink
Use raw material text fields within dialogs, it just looks more immer…
Browse files Browse the repository at this point in the history
…sive
  • Loading branch information
nirvn committed Jan 4, 2025
1 parent 5809b8c commit ac55330
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/qml/MessageLog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Page {
color: Theme.mainTextColor
}

QfTextField {
TextField {
id: appliationLogInput
width: applicationLogLabel.width
placeholderText: qsTr("Type optional details")
Expand Down
6 changes: 3 additions & 3 deletions src/qml/QFieldLocalDataPickerScreen.qml
Original file line number Diff line number Diff line change
Expand Up @@ -775,21 +775,21 @@ Page {
color: Theme.mainTextColor
}

QfTextField {
TextField {
id: importWebdavUrlInput
enabled: !webdavConnectionLoader.item || !webdavConnectionLoader.item.isFetchingAvailablePaths
width: importWebdavUrlLabel.width
placeholderText: qsTr("WebDAV server URL")
}

QfTextField {
TextField {
id: importWebdavUserInput
enabled: !webdavConnectionLoader.item || !webdavConnectionLoader.item.isFetchingAvailablePaths
width: importWebdavUrlLabel.width
placeholderText: qsTr("User")
}

QfTextField {
TextField {
id: importWebdavPasswordInput
enabled: !webdavConnectionLoader.item || !webdavConnectionLoader.item.isFetchingAvailablePaths
width: importWebdavUrlLabel.width
Expand Down

0 comments on commit ac55330

Please sign in to comment.