From 8293205854399861c3c19c23eb7fbf32fb5aa484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Fri, 25 Apr 2014 21:22:25 +0200 Subject: [PATCH] And load user collections also after logout --- picard/ui/options/general.py | 1 + 1 file changed, 1 insertion(+) diff --git a/picard/ui/options/general.py b/picard/ui/options/general.py index 088cca44b..c350c00c0 100644 --- a/picard/ui/options/general.py +++ b/picard/ui/options/general.py @@ -93,5 +93,6 @@ class GeneralOptionsPage(OptionsPage): def logout(self): self.tagger.xmlws.oauth_manager.revoke_tokens() self.update_login_logout() + load_user_collections() register_options_page(GeneralOptionsPage)