From e1c39e70751ea63287c2df4853a14b78008ed05e Mon Sep 17 00:00:00 2001 From: Nic Bollis Date: Tue, 24 Sep 2024 12:59:36 -0500 Subject: [PATCH] Allow doubles in Custom XLer Window (#2417) * Updated to MzLib 1.0.548 and fixed custom ions in search tasks * reverted calibration task change * merged in master bbbyy * Spectral Library from Command Line (#2386) * Updated to MzLib 1.0.548 and fixed custom ions in search tasks * reverted calibration task change * merged in master bbbyy * Enabled Library Loading from command line * Changed Custom XLer to use doubles in text boxes instead of integers --------- Co-authored-by: trishorts --- .../GUI/Views/CustomCrosslinkerWindow.xaml | 20 ++++++++++++------- .../GUI/Views/CustomCrosslinkerWindow.xaml.cs | 5 ----- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml b/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml index 7be16d71d..d310e89bf 100644 --- a/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml +++ b/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml @@ -31,20 +31,23 @@ diff --git a/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml.cs b/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml.cs index a65f79161..6c3244143 100644 --- a/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml.cs +++ b/MetaMorpheus/GUI/Views/CustomCrosslinkerWindow.xaml.cs @@ -84,10 +84,5 @@ private void CancelButton_Click(object sender, RoutedEventArgs e) { DialogResult = false; } - - private void CheckIfNumber(object sender, TextCompositionEventArgs e) - { - e.Handled = !GlobalGuiSettings.CheckIsPositiveInteger(e.Text); - } } }