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,11 +528,17 @@ boost::signals2::signal<void()> &EmoteManager::getGifUpdateSignal()
|
|||
_gifUpdateTimer.setInterval(30);
|
||||
_gifUpdateTimer.start();
|
||||
|
||||
SettingsManager::getInstance().enableGifAnimations.connect([this](bool enabled, auto) {
|
||||
if (enabled) {
|
||||
_gifUpdateTimer.start();
|
||||
} else {
|
||||
_gifUpdateTimer.stop();
|
||||
}
|
||||
});
|
||||
|
||||
QObject::connect(&_gifUpdateTimer, &QTimer::timeout, [this] {
|
||||
if (SettingsManager::getInstance().enableGifAnimations.getValue()) {
|
||||
_gifUpdateTimerSignal();
|
||||
WindowManager::instance->repaintGifEmotes();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue