[banshee] VideoLibrarySource: mark default playlists as HiddenWhenEmpty=true



commit e2480b318119700b1e519cbeeabb39e4d6f3ed92
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Tue Oct 22 10:40:57 2013 +0200

    VideoLibrarySource: mark default playlists as HiddenWhenEmpty=true
    
    For consistency with MusicLibrarySource, these default smart
    playlists should be hidden when empty.

 .../Banshee.Library/VideoLibrarySource.cs          |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs 
b/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs
index 894983e..a35c568 100644
--- a/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs
+++ b/src/Core/Banshee.Services/Banshee.Library/VideoLibrarySource.cs
@@ -106,12 +106,12 @@ namespace Banshee.Library
             new SmartPlaylistDefinition (
                 Catalog.GetString ("Favorites"),
                 Catalog.GetString ("Videos rated four and five stars"),
-                "rating>=4"),
+                "rating>=4", true),
 
             new SmartPlaylistDefinition (
                 Catalog.GetString ("Unwatched"),
                 Catalog.GetString ("Videos that haven't been played yet"),
-                "plays=0"),
+                "plays=0", true),
         };
     }
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]