From 7efbca601721027e13d0ceab34f1af0a18c0def4 Mon Sep 17 00:00:00 2001 From: ThePixelGamer Date: Tue, 31 May 2022 15:42:49 -0500 Subject: [PATCH] Set our upper profile name limit to 90 chars --- ZenovaLauncher/Dialogs/ProfileDialog.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ZenovaLauncher/Dialogs/ProfileDialog.xaml.cs b/ZenovaLauncher/Dialogs/ProfileDialog.xaml.cs index bae2ff8..ec7814c 100644 --- a/ZenovaLauncher/Dialogs/ProfileDialog.xaml.cs +++ b/ZenovaLauncher/Dialogs/ProfileDialog.xaml.cs @@ -19,6 +19,7 @@ public partial class ProfileDialog : ContentDialog protected ProfileDialog() { InitializeComponent(); + ProfileNameBox.MaxLength = 90; VersionBox.ItemsSource = VersionManager.instance; VersionBox.Items.SortDescriptions.Clear(); VersionBox.Items.SortDescriptions.Add(new SortDescription("SortOrder", ListSortDirection.Ascending));