mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
16 lines
254 B
QML
16 lines
254 B
QML
|
|
pragma ComponentBehavior: Bound
|
||
|
|
|
||
|
|
import QtQuick
|
||
|
|
import QtQuick.Layouts
|
||
|
|
|
||
|
|
import "../Controls2"
|
||
|
|
|
||
|
|
TextFieldWithHeaderType {
|
||
|
|
Layout.fillWidth: true
|
||
|
|
Layout.topMargin: 16
|
||
|
|
|
||
|
|
textField.validator: IntValidator { bottom: 0 }
|
||
|
|
|
||
|
|
checkEmptyText: true
|
||
|
|
}
|