From c6099649f6011f62ca45bb5f652f6530ffd073cb Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 4 Apr 2012 14:15:35 +0000 Subject: [PATCH] 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 --- Greenshot/Forms/SettingsForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Greenshot/Forms/SettingsForm.cs b/Greenshot/Forms/SettingsForm.cs index 9d8d6e2df..5b48b41bb 100644 --- a/Greenshot/Forms/SettingsForm.cs +++ b/Greenshot/Forms/SettingsForm.cs @@ -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;