Hide Original Page Break check box from print procedure dialog

Changed Harry's MAC domain
This commit is contained in:
Rich
2014-08-07 20:10:30 +00:00
parent 0098d6251a
commit 5e3f6b5e0e
2 changed files with 3 additions and 2 deletions

View File

@@ -251,7 +251,8 @@ namespace VEPROMS
// default to using OriginalPageBreaks (16bit page breaks) if App.config is set
// to true:
cbxOrPgBrk.Visible = VlnSettings.OriginalPageBreak && VlnSettings.DebugMode;
//cbxOrPgBrk.Visible = VlnSettings.OriginalPageBreak && VlnSettings.DebugMode;
cbxOrPgBrk.Visible = false; //per Harry
cbxOrPgBrk.Checked = false;
}