Remove delay when focusing quick switcher
This commit is contained in:
parent
583fd9b5ab
commit
1a448ae584
@ -12,13 +12,6 @@ Popup {
|
||||
property int textHeight: Math.round(Qt.application.font.pixelSize * 2.4)
|
||||
property int textMargin: Math.round(textHeight / 8)
|
||||
|
||||
function delay(delayTime, cb) {
|
||||
timer.interval = delayTime;
|
||||
timer.repeat = false;
|
||||
timer.triggered.connect(cb);
|
||||
timer.start();
|
||||
}
|
||||
|
||||
background: null
|
||||
width: Math.round(parent.width / 2)
|
||||
x: Math.round(parent.width / 2 - width / 2)
|
||||
@ -29,9 +22,7 @@ Popup {
|
||||
palette: colors
|
||||
onOpened: {
|
||||
completerPopup.open();
|
||||
delay(200, function() {
|
||||
roomTextInput.forceActiveFocus();
|
||||
});
|
||||
roomTextInput.forceActiveFocus();
|
||||
}
|
||||
onClosed: {
|
||||
completerPopup.close();
|
||||
@ -93,10 +84,6 @@ Popup {
|
||||
target: completerPopup
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: timer
|
||||
}
|
||||
|
||||
Overlay.modal: Rectangle {
|
||||
color: "#aa1E1E1E"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user