Skip to content

Commit

Permalink
Minor improvement Style selecting
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Dec 21, 2022
1 parent 39a69da commit ff43ef8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions FetchXmlBuilder/DockControls/XmlContentControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,10 @@ private void cmbQExStyle_SelectedIndexChanged(object sender, EventArgs e)
chkQExComments.Checked = false;
break;
}
if (cmbQExFlavor.Enabled && cmbQExFlavor.SelectedItem == null && cmbQExFlavor.Items.Count > 0)
{
cmbQExFlavor.SelectedIndex = 0;
}
fxb.UpdateLiveXML();
}

Expand Down

0 comments on commit ff43ef8

Please sign in to comment.