Reduce GIF frame window from 30ms to 20ms (#3886)
* fix frame timings * add changelog
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
namespace chatterino {
|
||||
|
||||
constexpr long unsigned gifFrameLength = 33;
|
||||
constexpr long unsigned gifFrameLength = 20;
|
||||
|
||||
class GIFTimer
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user