mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
changing the "Enable gif emotes" setting just starts/stops the gif timer instead
This commit is contained in:
parent
1fb0ca649a
commit
bb608c83d1
|
@ -528,12 +528,18 @@ boost::signals2::signal<void()> &EmoteManager::getGifUpdateSignal()
|
||||||
_gifUpdateTimer.setInterval(30);
|
_gifUpdateTimer.setInterval(30);
|
||||||
_gifUpdateTimer.start();
|
_gifUpdateTimer.start();
|
||||||
|
|
||||||
QObject::connect(&_gifUpdateTimer, &QTimer::timeout, [this] {
|
SettingsManager::getInstance().enableGifAnimations.connect([this](bool enabled, auto) {
|
||||||
if (SettingsManager::getInstance().enableGifAnimations.getValue()) {
|
if (enabled) {
|
||||||
_gifUpdateTimerSignal();
|
_gifUpdateTimer.start();
|
||||||
WindowManager::instance->repaintGifEmotes();
|
} else {
|
||||||
|
_gifUpdateTimer.stop();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
QObject::connect(&_gifUpdateTimer, &QTimer::timeout, [this] {
|
||||||
|
_gifUpdateTimerSignal();
|
||||||
|
WindowManager::instance->repaintGifEmotes();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return _gifUpdateTimerSignal;
|
return _gifUpdateTimerSignal;
|
||||||
|
|
Loading…
Reference in a new issue