mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-03 00:06:09 +00:00
14 lines
339 B
QML
14 lines
339 B
QML
import QtQuick 2.0
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import SystemProperties 1.0
|
|
|
|
MessageDialog {
|
|
property string helpText
|
|
|
|
informativeText: SystemProperties.hasBrowser ? helpText : ""
|
|
icon: StandardIcon.Critical
|
|
standardButtons: StandardButton.Ok |
|
|
(SystemProperties.hasBrowser ? StandardButton.Help : 0)
|
|
}
|