Commit 78b1a5c4 authored by JC Brand's avatar JC Brand

Show send button by default

parent ced8b8ac
......@@ -29,6 +29,8 @@ Soon we'll deprecate the latter, so prepare now.
- Remove the configuration setting `muc_show_join_leave_status`. The optional status message is no longer shown at all.
- Support for XEP-0156 is now enabled by default (which means that
[discover_connection_methods](https://conversejs.org/docs/html/configuration.html#discover-connection-methods) now has a default value of `true`).
- [show_send_button](https://conversejs.org/docs/html/configuration.html#show-send-button) now has a default value of `true`.
- New configuration setting [muc_hats_from_vcard](https://conversejs.org/docs/html/configuration.html#muc-hats-from-vcard).
## 6.0.0 (2020-01-09)
......
......@@ -1656,7 +1656,7 @@ be turned off by setting this config variable to ``false``.
show_send_button
----------------
* Default: ``false``
* Default: ``true``
Adds a button to the chat which can be clicked or tapped in order to send the
message.
......
......@@ -62,7 +62,7 @@ converse.plugins.add('converse-chatview', {
api.settings.update({
'auto_focus': true,
'message_limit': 0,
'show_send_button': false,
'show_send_button': true,
'show_retraction_warning': true,
'show_toolbar': true,
'visible_toolbar_buttons': {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment