mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
cleaned up app startup logic.
fixed update app issue.
This commit is contained in:
parent
b1e5646d7d
commit
a4a58c59f1
16 changed files with 148 additions and 54 deletions
13
NzbDrone/MessageBoxUserAlert.cs
Normal file
13
NzbDrone/MessageBoxUserAlert.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System.Windows.Forms;
|
||||
using NzbDrone.Host;
|
||||
|
||||
namespace NzbDrone
|
||||
{
|
||||
public class MessageBoxUserAlert : IUserAlert
|
||||
{
|
||||
public void Alert(string message)
|
||||
{
|
||||
MessageBox.Show(text: message, buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Warning, caption: "NzbDrone");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue