mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fixed crash that could occur when the user closes the Settings dialog (#3444)
This commit is contained in:
parent
14d11b6ebe
commit
c26fb01df5
|
@ -75,6 +75,7 @@
|
|||
- Bugfix: Fixed zero-width emotes sometimes wrapping lines incorrectly. (#3389)
|
||||
- Bugfix: Fixed using special chars in Windows username breaking the storage of custom commands (#3397)
|
||||
- Bugfix: Fixed character counter changing fonts after going over the limit. (#3422)
|
||||
- Bugfix: Fixed crash that could occur if the user opens/closes ChannelViews (e.g. EmotePopup, or Splits) then modifies the showLastMessageIndicator setting. (#3444)
|
||||
- Dev: Add GitHub action to test builds without precompiled headers enabled. (#3327)
|
||||
- Dev: Renamed CMake's build option `USE_SYSTEM_QT5KEYCHAIN` to `USE_SYSTEM_QTKEYCHAIN`. (#3103)
|
||||
- Dev: Add benchmarks that can be compiled with the `BUILD_BENCHMARKS` CMake flag. Off by default. (#3038)
|
||||
|
|
|
@ -194,7 +194,7 @@ void ChannelView::initializeSignals()
|
|||
[this](auto, auto) {
|
||||
this->update();
|
||||
},
|
||||
this);
|
||||
this->signalHolder_);
|
||||
|
||||
this->signalHolder_.managedConnect(getApp()->windows->gifRepaintRequested,
|
||||
[&] {
|
||||
|
|
Loading…
Reference in a new issue