Skip to content

Commit

Permalink
Username box bit wider, and fixed a bug with incomplete ssh / mosh li…
Browse files Browse the repository at this point in the history
…nks.
  • Loading branch information
peske committed May 13, 2019
1 parent edc5142 commit 7b2ba9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FluentTerminal.App/Dialogs/SshInfoDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ContentDialog.Resources>
<Grid Width="500">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100" />
<ColumnDefinition Width="140" />
<ColumnDefinition Width="22" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="8" />
Expand Down
4 changes: 3 additions & 1 deletion FluentTerminal.App/Services/SshHelperService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ public async Task<ShellProfile> GetSshShellProfileAsync(Uri uri)
if (!string.IsNullOrEmpty(error))
{
// Happens if the link doesn't contain all the needed data, so we have to prompt user to complete.
sshConnectionInfo = (SshConnectionInfoViewModel) await _dialogService.ShowSshConnectionInfoDialogAsync();
sshConnectionInfo =
(SshConnectionInfoViewModel) await _dialogService.ShowSshConnectionInfoDialogAsync(
sshConnectionInfo);

// sshConnectionInfo can be null if user clicks "Cancel".
if (sshConnectionInfo == null)
Expand Down

0 comments on commit 7b2ba9d

Please sign in to comment.