Moved to x64

This commit is contained in:
Maddo 2017-03-23 14:36:06 +01:00
commit 71af9e7eeb
13 changed files with 308 additions and 39 deletions

View file

@ -142,7 +142,7 @@ namespace CatalogLib
// setdouble default
}
return (T)_settingsDict[key];
return (T)_settingsDict[key];
}
@ -302,7 +302,7 @@ namespace CatalogLib
public bool GeneraleRotazioneAutomatica
{
get { return GetBool("GeneraleRotazioneAutomatica"); }
get { return GetBool("GeneraleRotazioneAutomatica", true); }
set { SetBool("GeneraleRotazioneAutomatica", value); }
}
@ -378,7 +378,7 @@ namespace CatalogLib
set { SetString("FotoSuffisso", value); }
}
public bool EnableThumbnails
{
get { return GetBool("EnableThumbnails", false); }
@ -410,6 +410,18 @@ namespace CatalogLib
set { SetDouble("dimensioneFont", value); }
}
public string TestoApplicareOrizzontale
{
get
{
return Get<string>("TestoApplicareOrizzontale", "");
}
set
{
Set<string>("TestoApplicareOrizzontale", value);
}
}
#endregion