forked from Public/monero-gui
android fix: release focus after scrolling
This commit is contained in:
10
main.qml
10
main.qml
@@ -1439,4 +1439,14 @@ ApplicationWindow {
|
||||
return false
|
||||
}
|
||||
|
||||
function releaseFocus() {
|
||||
// Workaround to release focus from textfield when scrolling (https://bugreports.qt.io/browse/QTBUG-34867)
|
||||
if(isAndroid) {
|
||||
console.log("releasing focus")
|
||||
middlePanel.focus = true
|
||||
middlePanel.focus = false
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user