Skip to content
Snippets Groups Projects
Commit 4643a8cf authored by Daniel Brötzmann's avatar Daniel Brötzmann Committed by Philipp Hörist
Browse files

Remove minimize_on_* MUC settings

parent 477b960c
No related branches found
No related tags found
No related merge requests found
......@@ -337,8 +337,6 @@ class Config:
'notify_on_all_messages': [opt_bool, False, _('If enabled, a notification is created for every message in this group chat.')],
'print_status': [opt_bool, False, _('Show a status message for all status changes (away, dnd, etc.) of users in a group chat.')],
'print_join_left': [opt_bool, False, _('Show a status message for every join or leave in a group chat.')],
'minimize_on_autojoin': [opt_bool, True, _('If enabled, the group chat is minimized into the contact list when joining automatically.')],
'minimize_on_close': [opt_bool, True, _('If enabled, the group chat is minimized into the contact list when closing it.')],
'send_chatstate': [opt_str, 'composing_only', _('Chat state notifications that are sent to the group chat. Possible values: \'all\', \'composing_only\' or \'disabled\'.')],
}, {}),
'plugins': ({
......
......@@ -275,8 +275,6 @@ class _ACCOUNT_DEFAULT:
'notify_on_all_messages': HAS_APP_DEFAULT,
'print_status': HAS_APP_DEFAULT,
'print_join_left': HAS_APP_DEFAULT,
'minimize_on_autojoin': True,
'minimize_on_close': True,
'send_chatstate': HAS_ACCOUNT_DEFAULT,
'send_marker': HAS_ACCOUNT_DEFAULT,
'encryption': '',
......
......@@ -54,16 +54,6 @@ def __init__(self, account, jid):
SettingType.GROUP_CHAT,
'notify_on_all_messages'),
Setting(SettingKind.SWITCH,
_('Minimize on Close'),
SettingType.GROUP_CHAT,
'minimize_on_close'),
Setting(SettingKind.SWITCH,
_('Minimize When Joining Automatically'),
SettingType.GROUP_CHAT,
'minimize_on_autojoin'),
Setting(SettingKind.POPOVER,
_('Send Chat State'),
SettingType.GROUP_CHAT,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment