Skip to content

Commit

Permalink
fix: use correct selection index when double-clicking into the void (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz authored Oct 2, 2024
1 parent 1f0816d commit 4d9ea37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
- Bugfix: Fixed log files being locked longer than needed. (#5592)
- Bugfix: Fixed global badges not showing in anonymous mode. (#5599)
- Bugfix: Fixed grammar in the user highlight page. (#5602)
- Bugfix: Fixed double-click selection not working when clicking outside a message. (#5617)
- Dev: Update Windows build from Qt 6.5.0 to Qt 6.7.1. (#5420)
- Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422)
- Dev: Unsingletonize `ISoundController`. (#5462)
Expand Down
4 changes: 4 additions & 0 deletions src/widgets/helper/ChannelView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2707,6 +2707,10 @@ void ChannelView::mouseDoubleClickEvent(QMouseEvent *event)

if (hoverLayoutElement == nullptr)
{
// XXX: this is duplicate work
auto idx = layout->getSelectionIndex(relativePos);
SelectionItem item(messageIndex, idx);
this->doubleClickSelection_ = {item, item};
return;
}

Expand Down

0 comments on commit 4d9ea37

Please sign in to comment.