mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-14 13:22:27 +00:00
13 lines
348 B
QML
13 lines
348 B
QML
import QtQuick 2.0
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import SystemProperties 1.0
|
|
|
|
NavigableMessageDialog {
|
|
property string helpText
|
|
|
|
informativeText: SystemProperties.hasBrowser ? helpText : ""
|
|
icon: StandardIcon.Critical
|
|
standardButtons: StandardButton.Ok |
|
|
(SystemProperties.hasBrowser ? StandardButton.Help : 0)
|
|
}
|