Skip to content

Commit

Permalink
Merge pull request #109 from FrozenAssassine/fixfor#100
Browse files Browse the repository at this point in the history
This adds selection to file info
  • Loading branch information
FrozenAssassine authored May 10, 2023
2 parents dddaa3f + be74c29 commit a3280dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fastedit/Dialogs/FileInfoDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static async Task Show(TabPageItem tab)
Foreground = DialogHelper.ContentDialogForeground(),
RequestedTheme = DialogHelper.DialogDesign,
Title = "Info " + FileName,
Content = content.ToString(),
Content = new TextBlock { Text = content.ToString(), IsTextSelectionEnabled = true },
CloseButtonText = "Ok",
DefaultButton = ContentDialogButton.Close,
};
Expand Down

0 comments on commit a3280dd

Please sign in to comment.