mirror of
https://github.com/Caraxi/mare.client.git
synced 2026-02-14 04:47:41 +01:00
add total count on mouseover, make syncshell windows non-blocking
This commit is contained in:
parent
d7bfa2147f
commit
984ee08a2b
12 changed files with 73 additions and 62 deletions
|
|
@ -36,14 +36,6 @@ public class PopupHandler : WindowMediatorSubscriberBase
|
|||
IsOpen = true;
|
||||
});
|
||||
|
||||
Mediator.Subscribe<OpenCreateSyncshellPopupMessage>(this, (msg) =>
|
||||
{
|
||||
_openPopup = true;
|
||||
_currentHandler = _handlers.OfType<CreateSyncshellPopupHandler>().Single();
|
||||
((CreateSyncshellPopupHandler)_currentHandler).Open();
|
||||
IsOpen = true;
|
||||
});
|
||||
|
||||
Mediator.Subscribe<OpenBanUserPopupMessage>(this, (msg) =>
|
||||
{
|
||||
_openPopup = true;
|
||||
|
|
@ -52,14 +44,6 @@ public class PopupHandler : WindowMediatorSubscriberBase
|
|||
IsOpen = true;
|
||||
});
|
||||
|
||||
Mediator.Subscribe<JoinSyncshellPopupMessage>(this, (_) =>
|
||||
{
|
||||
_openPopup = true;
|
||||
_currentHandler = _handlers.OfType<JoinSyncshellPopupHandler>().Single();
|
||||
((JoinSyncshellPopupHandler)_currentHandler).Open();
|
||||
IsOpen = true;
|
||||
});
|
||||
|
||||
Mediator.Subscribe<OpenSyncshellAdminPanelPopupMessage>(this, (msg) =>
|
||||
{
|
||||
IsOpen = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue