Fixed destination picker check box not correctly set.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1750 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-04-04 14:15:35 +00:00
parent eb616472c4
commit c6099649f6

View file

@ -280,7 +280,7 @@ namespace Greenshot {
imageNr++;
}
if (PickerDestination.DESIGNATION.Equals(destination.Designation)) {
checkbox_picker.Checked = true;
checkbox_picker.Checked = coreConfiguration.OutputDestinations.Contains(destination.Designation);
checkbox_picker.Text = destination.Description;
} else {
ListViewItem item;