Add folder icon support to MacOS
This commit is contained in:
parent
cf9ec9facf
commit
b9c2a1cce3
10 changed files with 761 additions and 18 deletions
|
|
@ -73,7 +73,7 @@ namespace LibationFileManager
|
|||
|
||||
public bool Exists(string propertyName) => persistentDictionary.Exists(propertyName);
|
||||
|
||||
[Description("Set cover art as the folder's icon. (Windows only)")]
|
||||
[Description("Set cover art as the folder's icon. (Windows and macOS only)")]
|
||||
public bool UseCoverAsFolderIcon { get => GetNonString(defaultValue: false); set => SetNonString(value); }
|
||||
|
||||
[Description("Use the beta version of Libation\r\nNew and experimental features, but probably buggy.\r\n(requires restart to take effect)")]
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ namespace LibationFileManager
|
|||
{
|
||||
try
|
||||
{
|
||||
if (!Configuration.Instance.UseCoverAsFolderIcon || !Configuration.IsWindows)
|
||||
if (!Configuration.Instance.UseCoverAsFolderIcon || Configuration.IsLinux)
|
||||
return;
|
||||
|
||||
// get path of cover art in Images dir. Download first if not exists
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue