print color settings are now configured using radio buttons instead of checkboxes

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2499 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
JKlingen 2013-02-17 13:54:34 +00:00
commit 4d2c01b96a
6 changed files with 285 additions and 232 deletions

View file

@ -558,6 +558,13 @@ namespace Greenshot {
CheckDestinationSettings();
}
protected override void OnFieldsFilled() {
// the color radio button is not actually bound to a setting, but checked when monochrome/grayscale are not checked
if(!radioBtnGrayScale.Checked && !radioBtnMonochrome.Checked) {
radioBtnColorPrint.Checked = true;
}
}
/// <summary>
/// Set the enable state of the expert settings
/// </summary>