Moved to x64
This commit is contained in:
parent
7c1633261c
commit
71af9e7eeb
13 changed files with 308 additions and 39 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue