From d4de52974bdaef52467e2a0c25511f8b439eca52 Mon Sep 17 00:00:00 2001 From: selsta Date: Fri, 10 Jun 2022 19:58:04 +0200 Subject: [PATCH] Mining: add info to start gui as admin for p2pool installation --- pages/Mining.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Mining.qml b/pages/Mining.qml index 68aeffec..cf2accc5 100644 --- a/pages/Mining.qml +++ b/pages/Mining.qml @@ -617,7 +617,7 @@ Rectangle { function p2poolDownloadFailed() { statusMessage.visible = false errorPopup.title = qsTr("P2Pool Installation Failed") + translationManager.emptyString; - errorPopup.text = "P2Pool installation failed." + errorPopup.text = qsTr("P2Pool installation failed.") + isWindows ? (" " + qsTr("Try starting the program with administrator privileges.")) : "" errorPopup.icon = StandardIcon.Critical errorPopup.open() update()