mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-03 11:50:21 +02:00
Merge pull request #544 from kasenvr/fix/goto-explore
Update the connection failure dialog 'go to' -> 'explore'
This commit is contained in:
commit
ac3147fa66
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ MessageDialog {
|
||||||
objectName: "ConnectionFailureDialog"
|
objectName: "ConnectionFailureDialog"
|
||||||
|
|
||||||
title: "No Connection"
|
title: "No Connection"
|
||||||
text: "Unable to connect to this domain. Click the 'GO TO' button on the toolbar to visit another domain."
|
text: "Unable to connect to this domain. Click the 'EXPLORE' button on the toolbar to visit another domain."
|
||||||
buttons: OriginalDialogs.StandardButton.Ok
|
buttons: OriginalDialogs.StandardButton.Ok
|
||||||
icon: OriginalDialogs.StandardIcon.Warning
|
icon: OriginalDialogs.StandardIcon.Warning
|
||||||
defaultButton: OriginalDialogs.StandardButton.NoButton;
|
defaultButton: OriginalDialogs.StandardButton.NoButton;
|
||||||
|
|
|
@ -19,7 +19,7 @@ Item {
|
||||||
buttons: OriginalDialogs.StandardButton.Ok,
|
buttons: OriginalDialogs.StandardButton.Ok,
|
||||||
defaultButton: OriginalDialogs.StandardButton.NoButton,
|
defaultButton: OriginalDialogs.StandardButton.NoButton,
|
||||||
title: "No Connection",
|
title: "No Connection",
|
||||||
text: "Unable to connect to this domain. Click the 'GO TO' button on the toolbar to visit another domain."
|
text: "Unable to connect to this domain. Click the 'EXPLORE' button on the toolbar to visit another domain."
|
||||||
});
|
});
|
||||||
object.selected.connect(function(button) {
|
object.selected.connect(function(button) {
|
||||||
if (button === OriginalDialogs.StandardButton.Ok) {
|
if (button === OriginalDialogs.StandardButton.Ok) {
|
||||||
|
|
Loading…
Reference in a new issue