summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-06-05 13:50:54 +0200
committermathieui <mathieui@mathieui.net>2016-06-05 13:50:54 +0200
commitacf22faecf732118c2bb63ccd7ba05594348e3ee (patch)
treee2d610e7f7743a9571bb1abd73010afe0c06b504
parent0a2238def5c01f56ce5fb9b451071ab9f8121c88 (diff)
downloadpoezio-acf22faecf732118c2bb63ccd7ba05594348e3ee.tar.gz
poezio-acf22faecf732118c2bb63ccd7ba05594348e3ee.tar.bz2
poezio-acf22faecf732118c2bb63ccd7ba05594348e3ee.tar.xz
poezio-acf22faecf732118c2bb63ccd7ba05594348e3ee.zip
Set "show_useless_separator" to true by default
For consistency
-rw-r--r--data/default_config.cfg2
-rw-r--r--doc/source/configuration.rst5
-rw-r--r--src/config.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg
index e463b7b4..ac3a72f2 100644
--- a/data/default_config.cfg
+++ b/data/default_config.cfg
@@ -503,7 +503,7 @@ max_lines_in_memory = 2048
# Show the separator at the bottom of the text buffer, even if no one
# spoke
-show_useless_separator = false
+show_useless_separator = true
# Set this to true if you want the commands to be executed remotely
# (with ssh & the daemon), see the documentation of the /link plugin
diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst
index 9310ccbd..718d24ca 100644
--- a/doc/source/configuration.rst
+++ b/doc/source/configuration.rst
@@ -1174,9 +1174,10 @@ found.
show_useless_separator
- **Default value:** ``false``
+ **Default value:** ``true``
- If ``true``, show the separator at the bottom of a chat room, even if no one spoke.
+ If ``false``, the separator at the bottom of a chat room will not be
+ displayed if no one spoke.
use_log
diff --git a/src/config.py b/src/config.py
index 307e8e47..7f0c75f6 100644
--- a/src/config.py
+++ b/src/config.py
@@ -118,7 +118,7 @@ DEFAULT_CONFIG = {
'show_tab_names': False,
'show_tab_numbers': True,
'show_timestamps': True,
- 'show_useless_separator': False,
+ 'show_useless_separator': True,
'status': '',
'status_message': '',
'theme': 'default',