mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-16 01:36:57 +00:00
add "overwrite mode" for the setup wizard, basically this just ignores the precondition of having whatever the page configures before showing it.
i.e. if you had keys installed, previously it'd skip right to firmware. additionally added more customization to the now instance-based NotificationHelper
This commit is contained in:
parent
8d9d6b1afc
commit
07834ad4a2
5 changed files with 15 additions and 15 deletions
|
|
@ -22,12 +22,14 @@ namespace Ryujinx.Ava.UI.Helpers
|
|||
|
||||
private readonly BlockingCollection<Notification> _notifications = new();
|
||||
|
||||
public NotificationHelper(Window host)
|
||||
public NotificationHelper(Window host,
|
||||
NotificationPosition visiblePosition = NotificationPosition.BottomRight,
|
||||
int maxItems = MaxNotifications)
|
||||
{
|
||||
_notificationManager = new WindowNotificationManager(host)
|
||||
{
|
||||
Position = NotificationPosition.BottomRight,
|
||||
MaxItems = MaxNotifications,
|
||||
Position = visiblePosition,
|
||||
MaxItems = maxItems,
|
||||
Margin = new Thickness(0, 0, 15, 40)
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue