From a9664691e60dbbf77f04fce8d14a1645eb54ca76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 17 May 2014 09:34:22 +0200 Subject: [PATCH] always spawn the native error dialog --- OpenRA.Game/Platform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Platform.cs b/OpenRA.Game/Platform.cs index 2c0c6fc699..d8a30889b0 100644 --- a/OpenRA.Game/Platform.cs +++ b/OpenRA.Game/Platform.cs @@ -129,7 +129,7 @@ namespace OpenRA ).F(title, message, icon, logsButton, logsPath, faqButton, faqPath, quitButton); } - if (CurrentPlatform == PlatformType.Linux && File.Exists("/usr/bin/zenity") && File.Exists("/usr/bin/xdg-open")) + if (CurrentPlatform == PlatformType.Linux) process = "error-dialog.sh"; var psi = new ProcessStartInfo(process, args);