Skip to content
Snippets Groups Projects

New plugin: Stickers

Open Alexander requested to merge PapaTutuWawa/gajim-plugins:feat/stickers-plugin into master
+ 1
1
@@ -201,7 +201,6 @@ class StickersPlugin(GajimPlugin):
self.sticker_pack_retractions = {} # Sticker pack id -> [Accounts that we wait on]
self.description = _('Send stickers. Note that stickers are currently always sent unencrypted. Requires python-pillow.')
self.config_dialog = StickersConfigDialog(self)
self.config_default_values = {
'DOWNLOAD_NEW': (True, 'Request new stickers'),
'DOWNLOAD_NEW_SIGNIN': (True, 'Download new stickers'),
@@ -209,6 +208,7 @@ class StickersPlugin(GajimPlugin):
'STICKER_WIDTH': (100, 'Sticker width'),
'SHOW_ANIMATED_STICKERS': (True, 'Show animated stickers')
}
self.config_dialog = StickersConfigDialog(self)
self.events_handlers = {
'decrypted-message-received': (
ged.PREGUI, self._on_message_received),
Loading