Allow the authentication window to be opened anywhere

This commit is contained in:
Pat Hartl 2023-01-15 13:33:04 -06:00
parent 3bfa856ed5
commit 3bb2e35e23

View file

@ -9,6 +9,7 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using YamlDotNet.Serialization; using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions; using YamlDotNet.Serialization.NamingConventions;
@ -189,9 +190,12 @@ namespace LANCommander.PlaynitePlugin
return new LANCommanderSettingsView(this); return new LANCommanderSettingsView(this);
} }
public System.Windows.Window ShowAuthenticationWindow() public Window ShowAuthenticationWindow()
{ {
var window = PlayniteApi.Dialogs.CreateWindow(new WindowCreationOptions() Window window = null;
Application.Current.Dispatcher.Invoke((Action)delegate
{
window = PlayniteApi.Dialogs.CreateWindow(new WindowCreationOptions()
{ {
ShowMinimizeButton = false, ShowMinimizeButton = false,
}); });
@ -207,6 +211,7 @@ namespace LANCommander.PlaynitePlugin
window.Owner = PlayniteApi.Dialogs.GetCurrentAppWindow(); window.Owner = PlayniteApi.Dialogs.GetCurrentAppWindow();
window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner; window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;
window.ShowDialog(); window.ShowDialog();
});
return window; return window;
} }