mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 13:56:24 +02:00
Merge pull request #8599 from howard-stearns/close-address-bar-after-going-home
close address bar after going home
This commit is contained in:
commit
d83600a22e
1 changed files with 4 additions and 1 deletions
|
@ -135,7 +135,10 @@ Window {
|
|||
buttonState: 1
|
||||
defaultState: 1
|
||||
hoverState: 2
|
||||
onClicked: addressBarDialog.loadHome();
|
||||
onClicked: {
|
||||
addressBarDialog.loadHome();
|
||||
root.shown = false;
|
||||
}
|
||||
anchors {
|
||||
left: parent.left
|
||||
leftMargin: homeButton.width / 2
|
||||
|
|
Loading…
Reference in a new issue