aboutsummaryrefslogtreecommitdiff
path: root/src/metadata-menu-item.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/metadata-menu-item.vala')
-rw-r--r--src/metadata-menu-item.vala24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/metadata-menu-item.vala b/src/metadata-menu-item.vala
index b616a7b..3f71653 100644
--- a/src/metadata-menu-item.vala
+++ b/src/metadata-menu-item.vala
@@ -19,7 +19,6 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
using Gee;
using DbusmenuMetadata;
-using Dbusmenu;
using Gdk;
public class MetadataMenuitem : PlayerItem
@@ -96,29 +95,6 @@ public class MetadataMenuitem : PlayerItem
return result;
}
- public void determine_visibility()
- {
- try{
- if(property_get_int(MENUITEM_TITLE) == -1){
- this.property_set_bool(MENUITEM_PROP_VISIBLE, false);
- return;
- }
- }
- catch(Error e){
- warning("determine_visibility - %s", e.message);
- }
- try{
- string title = property_get(MENUITEM_TITLE);
- if(title.length == 0){
- this.property_set_bool(MENUITEM_PROP_VISIBLE, false);
- return;
- }
- }
- catch(Error e){
- warning("determine_visibility - %s", e.message);
- }
- }
-
public void fetch_art(string uri, string prop)
{
File art_file = File.new_for_uri(uri);