include changes from master #43
1 changed files with 10 additions and 3 deletions
|
@ -5,10 +5,17 @@ namespace EnvyUpdate
|
||||||
internal class Notify
|
internal class Notify
|
||||||
{
|
{
|
||||||
public static void ShowDrivUpdatePopup()
|
public static void ShowDrivUpdatePopup()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var toast = new ToastContentBuilder();
|
var toast = new ToastContentBuilder();
|
||||||
toast.AddText(Properties.Resources.update_popup_message);
|
toast.AddText(Properties.Resources.update_popup_message);
|
||||||
toast.Show();
|
toast.Show();
|
||||||
}
|
}
|
||||||
|
catch (System.Exception ex)
|
||||||
|
{
|
||||||
|
Debug.LogToFile("WARN Could not show notification. Error: " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in a new issue