aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-11-09 18:49:00 +0100
committerdec05eba <dec05eba@protonmail.com>2022-11-09 18:49:00 +0100
commit60f37ebeb130bd58adece6bee06420b40c4e5a05 (patch)
tree554fc8839bba69e2a51b4862b292953640ee5eff /include
parentdeb32bded40c4c46ce57c729c303edcb1915458b (diff)
Matrix: reply body formatting shouldn't have html, formatted body should be pure html. Dont display urls in codeblocks
Diffstat (limited to 'include')
-rw-r--r--include/Text.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Text.hpp b/include/Text.hpp
index daf0d46..02a6b62 100644
--- a/include/Text.hpp
+++ b/include/Text.hpp
@@ -26,7 +26,7 @@ namespace QuickMedia
enum FormattedTextFlag : uint8_t {
FORMATTED_TEXT_FLAG_NONE = 0,
//FORMATTED_TEXT_FLAG_BOLD = 1 << 0,
- FORMATTED_TEXT_FLAG_MONOSPACE = 1 << 1,
+ FORMATTED_TEXT_FLAG_CODE = 1 << 1,
FORMATTED_TEXT_FLAG_COLOR = 1 << 2
};