Fix Updater Icon On Linux (#1995)

* Fix Linux Icon

* Fix identation

* Move the icon to the private constructor
This commit is contained in:
edisionnano 2021-02-08 01:27:12 +02:00 committed by GitHub
parent ee28ccebf4
commit 1319eda8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ using Ryujinx.Ui;
using System;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
namespace Ryujinx.Modules
@ -32,6 +33,7 @@ namespace Ryujinx.Modules
_mainWindow = mainWindow;
_buildUrl = buildUrl;
Icon = new Gdk.Pixbuf(Assembly.GetExecutingAssembly(), "Ryujinx.Ui.Resources.Logo_Ryujinx.png");
MainText.Text = "Do you want to update Ryujinx to the latest version?";
SecondaryText.Text = $"{Program.Version} -> {newVersion}";
@ -86,4 +88,4 @@ namespace Ryujinx.Modules
Dispose();
}
}
}
}