mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-19 09:32:38 +02:00
Show cursor if user clicks in address bar
This commit is contained in:
parent
7d23cd7c7c
commit
742e603fd6
1 changed files with 8 additions and 0 deletions
|
@ -214,6 +214,14 @@ Window {
|
|||
onActiveFocusChanged: {
|
||||
cursorVisible = isCursorVisible;
|
||||
}
|
||||
MouseArea {
|
||||
// If user clicks in address bar show cursor to indicate ability to enter address.
|
||||
anchors.fill: parent
|
||||
onClicked: {
|
||||
isCursorVisible = true;
|
||||
parent.cursorVisible = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue