Reduce GIF frame window from 30ms to 20ms (#3886)

* fix frame timings

* add changelog
This commit is contained in:
Troy
2022-07-31 18:15:12 -04:00
committed by GitHub
parent 109fb5c016
commit ebc7852f9f
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ namespace chatterino {
void GIFTimer::initialize()
{
this->timer.setInterval(30);
this->timer.setInterval(gifFrameLength);
getSettings()->animateEmotes.connect([this](bool enabled, auto) {
if (enabled)
+1 -1
View File
@@ -5,7 +5,7 @@
namespace chatterino {
constexpr long unsigned gifFrameLength = 33;
constexpr long unsigned gifFrameLength = 20;
class GIFTimer
{