From 918120b5c8ae451fd07973f3e4450a5d4374f78e Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Thu, 2 Jun 2022 20:51:17 +0200 Subject: [PATCH] PICARD-2494: The view info dialog is not needed for NatAlbum --- picard/album.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/picard/album.py b/picard/album.py index c2afe3dc4..eeace73c8 100644 --- a/picard/album.py +++ b/picard/album.py @@ -875,6 +875,9 @@ class NatAlbum(Album): def can_browser_lookup(self): return False + def can_view_info(self): + return False + _album_post_removal_processors = PluginFunctions(label='album_post_removal_processors')