mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-14 21:46:31 +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;
|
|
}
|