diff --git a/TrueCraft.Launcher/Program.cs b/TrueCraft.Launcher/Program.cs index 4ed1412..5539c8c 100644 --- a/TrueCraft.Launcher/Program.cs +++ b/TrueCraft.Launcher/Program.cs @@ -19,6 +19,10 @@ namespace TrueCraft.Launcher Application.Initialize(ToolkitType.Gtk); // TODO: Cocoa else if (RuntimeInfo.IsWindows) Application.Initialize(ToolkitType.Wpf); + else + // In this case they're probably using some flavor of Unix + // which probably has some flavor of GTK availble + Application.Initialize(ToolkitType.Gtk); UserSettings.Local = new UserSettings(); UserSettings.Local.Load(); var thread = new Thread(KeepSessionAlive);