mirror of
https://github.com/greenshot/greenshot
synced 2025-07-13 16:43:54 -07:00
Fixed wrong reference to the GreenshotPlugin and changed a property name so it's forced to a default.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2228 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
65ad25ac57
commit
2127ce678b
9 changed files with 22 additions and 74 deletions
|
@ -176,8 +176,8 @@ namespace GreenshotPlugin.Core {
|
|||
[IniProperty("MinimizeWorkingSetSize", Description="Optimize memory footprint, but with a performance penalty!", DefaultValue="False")]
|
||||
public bool MinimizeWorkingSetSize;
|
||||
|
||||
[IniProperty("CheckUnstable", Description = "Also check for unstable version updates", DefaultValue = "False")]
|
||||
public bool CheckUnstable;
|
||||
[IniProperty("CheckForUnstable", Description = "Also check for unstable version updates", DefaultValue = "False")]
|
||||
public bool CheckForUnstable;
|
||||
|
||||
[IniProperty("ActiveTitleFixes", Description="The fixes that are active.")]
|
||||
public List<string> ActiveTitleFixes;
|
||||
|
@ -294,7 +294,7 @@ namespace GreenshotPlugin.Core {
|
|||
/// </summary>
|
||||
public override void AfterLoad() {
|
||||
// Comment with releases
|
||||
// CheckUnstable = true;
|
||||
// CheckForUnstable = true;
|
||||
|
||||
if (OutputDestinations == null) {
|
||||
OutputDestinations = new List<string>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue