Prepopulate authentication view with current server address

This commit is contained in:
Pat Hartl 2023-01-14 15:51:17 -06:00
parent 5f94efc58d
commit 3ae134188e
2 changed files with 5 additions and 1 deletions

View file

@ -144,7 +144,10 @@ namespace LANCommander.PlaynitePlugin
window.Title = "Authenticate to LANCommander";
window.Content = new Views.Authentication(this);
window.DataContext = new ViewModels.Authentication();
window.DataContext = new ViewModels.Authentication()
{
ServerAddress = Settings.ServerAddress
};
window.Owner = PlayniteApi.Dialogs.GetCurrentAppWindow();
window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;

View file

@ -39,6 +39,7 @@ namespace LANCommander.PlaynitePlugin
PART_AuthenticateLabel.Content = "Checking authentication status...";
PART_AuthenticationButton.IsEnabled = false;
PART_AuthenticateLabel.Content = Settings.InstallDirectory;
var token = new AuthToken()
{
AccessToken = Settings.AccessToken,