diff options
-rw-r--r-- | data/default_config.cfg | 2 | ||||
-rw-r--r-- | doc/source/configuration.rst | 2 | ||||
-rw-r--r-- | poezio/config.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index 3b8d17f0..6be44768 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -437,7 +437,7 @@ use_bookmarks_method = #request_message_receipts = true # Display your contacts’ avatar in the roster if true. -#enable_avatars = false +#enable_avatars = true # Use Unicode half-block (▄) instead of full-block (█) to display images. # This doubles the vertical resolution and gives square pixels, but may diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index fc862f16..6fff3e1c 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -293,7 +293,7 @@ to understand what is :ref:`carbons <carbons-details>` or enable_avatars - **Default value:** ``false`` + **Default value:** ``true`` Display contact avatars in the roster. diff --git a/poezio/config.py b/poezio/config.py index 26de67e5..0fb6d118 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -57,7 +57,7 @@ DEFAULT_CONFIG = { 'display_mood_notifications': False, 'display_tune_notifications': False, 'display_user_color_in_join_part': True, - 'enable_avatars': False, + 'enable_avatars': True, 'enable_carbons': True, 'enable_css_parsing': True, 'enable_user_activity': True, |