From be74c29d7a81f99713ac28b3aac5c2f82cd78eea Mon Sep 17 00:00:00 2001 From: Julius K Date: Thu, 2 Mar 2023 16:11:45 +0100 Subject: [PATCH] This fixes #100 --- Fastedit/Dialogs/FileInfoDialog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fastedit/Dialogs/FileInfoDialog.cs b/Fastedit/Dialogs/FileInfoDialog.cs index 8b88668..3faa841 100644 --- a/Fastedit/Dialogs/FileInfoDialog.cs +++ b/Fastedit/Dialogs/FileInfoDialog.cs @@ -60,7 +60,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, };