Skip to content

Commit

Permalink
Add missing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dotMorten committed Jun 4, 2024
1 parent 16dce08 commit 445a3e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public partial class AttachmentsPopupElementView : Control
private UI.Controls.PopupViewer? GetPopupViewerParent()
{
var parent = VisualTreeHelper.GetParent(this);
while(parent is not null && parent is not UI.Controls.PopupViewer popup)
while (parent is not null && parent is not UI.Controls.PopupViewer popup)
{
parent = VisualTreeHelper.GetParent(parent);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ await Microsoft.Maui.ApplicationModel.Launcher.Default.OpenAsync(
using var outfile = saveFileDialog.OpenFile();
await stream.CopyToAsync(outfile);
}
catch(System.Exception ex)
catch (System.Exception ex)
{
System.Diagnostics.Trace.WriteLine($"Failed to save file to disk: " + ex.Message);
}
Expand Down

0 comments on commit 445a3e2

Please sign in to comment.