From 875cd3dde62952d9fd9f3ec684a87fd5ea0732c6 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Sat, 2 Aug 2008 05:16:28 +0200 Subject: [PATCH] macosx: Make sure empty nodes are shown as node. --- modules/gui/macosx/playlist.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index f9e6e8efd6..30daeb0dfb 100644 --- a/modules/gui/macosx/playlist.m +++ b/modules/gui/macosx/playlist.m @@ -217,9 +217,9 @@ if( p_item ) i_return = p_item->i_children; } - vlc_object_release( p_playlist ); + pl_Release( VLCIntf ); - return (i_return > 0); + return (i_return >= 0); } /* retrieve the string values for the cells */ -- 2.39.2