Skip to content

Commit

Permalink
Fixed crash that could occur when the user closes the Settings dialog (
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored Jan 1, 2022
1 parent 14d11b6 commit c26fb01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/helper/ChannelView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ void ChannelView::initializeSignals()
[this](auto, auto) {
this->update();
},
this);
this->signalHolder_);

this->signalHolder_.managedConnect(getApp()->windows->gifRepaintRequested,
[&] {
Expand Down

0 comments on commit c26fb01

Please sign in to comment.