diff --git a/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml b/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml
index 9d118b2..50c85ca 100644
--- a/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml
+++ b/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml
@@ -42,7 +42,7 @@
-
+
diff --git a/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml.cs b/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml.cs
index db864e1..736197b 100644
--- a/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml.cs
+++ b/Bloxstrap/UI/Elements/Menu/Pages/BehaviourPage.xaml.cs
@@ -17,21 +17,5 @@ namespace Bloxstrap.UI.Menu.Pages
DataContext = new BehaviourViewModel();
InitializeComponent();
}
-
- // https://stackoverflow.com/a/13289118/11852173
- // yes this doesnt fully conform to xaml but whatever
- private void ComboBox_KeyEnterUpdate(object sender, KeyEventArgs e)
- {
- if (e.Key == Key.Enter)
- {
- ComboBox box = (ComboBox)sender;
- DependencyProperty prop = ComboBox.TextProperty;
-
- BindingExpression binding = BindingOperations.GetBindingExpression(box, prop);
-
- if (binding is not null)
- binding.UpdateSource();
- }
- }
}
}