mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 13:52:28 +02:00
14 lines
432 B
QML
14 lines
432 B
QML
import QtQuick.Dialogs 1.2 as OriginalDialogs
|
|
|
|
import "dialogs"
|
|
|
|
MessageDialog {
|
|
id: root
|
|
objectName: "ConnectionFailureDialog"
|
|
|
|
title: "No Connection"
|
|
text: "Unable to connect to this domain. Click the 'PLACES' button on the toolbar to visit another domain."
|
|
buttons: OriginalDialogs.StandardButton.Ok
|
|
icon: OriginalDialogs.StandardIcon.Warning
|
|
defaultButton: OriginalDialogs.StandardButton.NoButton;
|
|
}
|