Merge pull request #5252 from Mailaender/zenity

Added native Gtk+ crash dialogs on Linux
This commit is contained in:
Paul Chote
2014-05-17 22:45:05 +12:00
13 changed files with 31 additions and 14 deletions

View File

@@ -129,6 +129,9 @@ namespace OpenRA
).F(title, message, icon, logsButton, logsPath, faqButton, faqPath, quitButton);
}
if (CurrentPlatform == PlatformType.Linux)
process = "error-dialog.sh";
var psi = new ProcessStartInfo(process, args);
psi.UseShellExecute = false;
psi.CreateNoWindow = true;