Added Paste Plain Text and Paste No Returns options to System Options
This commit is contained in:
@@ -57,9 +57,23 @@ namespace VEPROMS
|
||||
cbAnnotationPopup.Checked = Settings.Default.AutoPopUpAnnotations;
|
||||
cbStepTypeToolTip.Checked = Settings.Default.StepTypeToolTip;
|
||||
cbTVExpand.Checked = Settings.Default.SaveTreeviewExpanded;
|
||||
cbPasteNoReturns.Checked = Settings.Default.PasteNoReturns;
|
||||
cbPastePlainText.Checked = Settings.Default.PastePlainText;
|
||||
}
|
||||
private void cbPastePlainText_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (!_initializing)
|
||||
{
|
||||
Settings.Default.PastePlainText = cbPastePlainText.Checked;
|
||||
}
|
||||
}
|
||||
private void cbPasteNoReturns_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (!_initializing)
|
||||
{
|
||||
Settings.Default.PasteNoReturns = cbPasteNoReturns.Checked;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void cbRibonBlue_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (!_initializing)
|
||||
|
Reference in New Issue
Block a user