From 70188c54f7ef67acd8358d3c0ba76398585cbb29 Mon Sep 17 00:00:00 2001 From: Bob Long Date: Wed, 27 Jul 2022 22:26:44 -0400 Subject: [PATCH] Use numberColorBackup to initialize QuickViewOptions This initializes the colors to the correct setting even if the warning manager is currently active on that box --- Controls/QuickViewOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controls/QuickViewOptions.cs b/Controls/QuickViewOptions.cs index 15b851647e..492879bf94 100644 --- a/Controls/QuickViewOptions.cs +++ b/Controls/QuickViewOptions.cs @@ -73,8 +73,8 @@ private void QuickViewOptions_Shown(object sender, EventArgs e) // Initialize custom color textbox and color picker button TXT_color.Enabled = CHK_customcolor.Checked; BUT_colorpicker.Enabled = CHK_customcolor.Checked; - TXT_color.Text = _qv.numberColor.Name; - BUT_colorpicker.BackColor = _qv.numberColor; + TXT_color.Text = _qv.numberColorBackup.Name; + BUT_colorpicker.BackColor = _qv.numberColorBackup; } private void CMB_Source_SelectedIndexChanged(object sender, EventArgs e)