diff --git a/ScpSettings/ColorPicker.dll b/ScpSettings/ColorPicker.dll index 5ce28b1a..4a4b0ec9 100755 Binary files a/ScpSettings/ColorPicker.dll and b/ScpSettings/ColorPicker.dll differ diff --git a/ScpSettings/ColorPickerControls.dll b/ScpSettings/ColorPickerControls.dll index add5829a..e6db2690 100755 Binary files a/ScpSettings/ColorPickerControls.dll and b/ScpSettings/ColorPickerControls.dll differ diff --git a/ScpSettings/MainWindow.xaml b/ScpSettings/MainWindow.xaml index a242f73c..5f5e35db 100644 --- a/ScpSettings/MainWindow.xaml +++ b/ScpSettings/MainWindow.xaml @@ -362,6 +362,7 @@ + @@ -506,4 +507,4 @@ - \ No newline at end of file + diff --git a/ScpSettings/MainWindow.xaml.cs b/ScpSettings/MainWindow.xaml.cs index c6e702a7..fba62084 100644 --- a/ScpSettings/MainWindow.xaml.cs +++ b/ScpSettings/MainWindow.xaml.cs @@ -184,5 +184,13 @@ private void XInputModToggleButton_Unchecked(object sender, RoutedEventArgs e) } #endregion + + private void ApplyButton_Click(object sender, RoutedEventArgs e) + { + if (!_proxy.IsActive || _config == null) + return; + + _proxy.WriteConfig(_config); + } } -} \ No newline at end of file +}