1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 13:32:50 -05:00

printers: fix input field height

fixes #1254
This commit is contained in:
bbedward
2026-01-03 10:54:53 -05:00
parent e1817027b1
commit 2991aac82e

View File

@@ -421,7 +421,6 @@ Item {
DankTextField {
width: parent.width - 80 - Theme.spacingS
height: 40
placeholderText: I18n.tr("Printer name (no spaces)")
text: printerTab.newPrinterName
onTextEdited: printerTab.newPrinterName = text.replace(/\s/g, "-")
@@ -443,7 +442,6 @@ Item {
DankTextField {
width: parent.width - 80 - Theme.spacingS
height: 40
placeholderText: I18n.tr("Optional location")
text: printerTab.newPrinterLocation
onTextEdited: printerTab.newPrinterLocation = text
@@ -465,7 +463,6 @@ Item {
DankTextField {
width: parent.width - 80 - Theme.spacingS
height: 40
placeholderText: I18n.tr("Optional description")
text: printerTab.newPrinterInfo
onTextEdited: printerTab.newPrinterInfo = text