Added Numpad enter key support.

This commit is contained in:
armored-dragon 2024-11-19 20:16:26 -06:00
parent 2fcf2d47ed
commit d7401e8e73
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -3,8 +3,6 @@ import QtQuick.Controls 2.5
import QtQuick.Controls.Styles 1.4
import QtQuick.Layouts 1.3
// TODO: Numpad Enter key support
Item {
id: root;
property string settingText: "";
@ -68,14 +66,10 @@ Item {
radius: 10;
}
onTextChanged: {
valueChanged(spinbox.value);
}
Keys.onPressed: {
if (event.key === Qt.Key_Return) {
event.accepted = true;
if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
valueChanged(spinboxText.text);
settingValue = spinboxText.text;
}
}
}