diff options
author | Joe <rubberduckie3554@gmail.com> | 2021-07-24 18:26:25 -0400 |
---|---|---|
committer | Joe <rubberduckie3554@gmail.com> | 2021-07-24 18:26:25 -0400 |
commit | 3f567a8da7f41a2ce094f15340e39ea8aec55fb3 (patch) | |
tree | 42b6f59f0fa36ad738133198333cccf0c4100621 /src/Utils.cpp | |
parent | Remove 'respond to key requests' functionality (diff) | |
parent | Fix edge case that could lead to no new one time keys being uploaded (diff) | |
download | nheko-3f567a8da7f41a2ce094f15340e39ea8aec55fb3.tar.xz |
Merge master and fix conflicts
Diffstat (limited to 'src/Utils.cpp')
-rw-r--r-- | src/Utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp index eabf50d9..a99831c4 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -540,7 +540,7 @@ utils::markdownToHtml(const QString &text, bool rainbowify) // Use colors as described here: // https://shark.comfsm.fm/~dleeling/cis/hsl_rainbow.html auto color = - QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 1.0, 0.5); + QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 0.9, 0.5); // format color for HTML auto colorString = color.name(QColor::NameFormat::HexRgb); // create HTML element for current char |