1
0

Introduced BasePlugin.can_user_disable(). TrustedCoin plugin can't be disabled by user.

This commit is contained in:
SomberNight
2017-10-24 04:42:52 +02:00
parent 020f0637d7
commit 523de69b5e
3 changed files with 11 additions and 2 deletions

View File

@@ -253,6 +253,9 @@ class BasePlugin(PrintError):
def is_available(self):
return True
def can_user_disable(self):
return True
def settings_dialog(self):
pass