Fix selecting stickers in Replies section.
This commit is contained in:
parent
22a85016e3
commit
5a3733b5b6
|
@ -2094,7 +2094,8 @@ void ListWidget::mouseActionStart(
|
|||
if (isPressInSelectedText(dragState)) {
|
||||
_mouseAction = MouseAction::PrepareDrag; // start text drag
|
||||
} else if (!_pressWasInactive) {
|
||||
if (requiredToStartDragging(pressElement)) {
|
||||
if (requiredToStartDragging(pressElement)
|
||||
&& _pressState.pointState != PointState::Outside) {
|
||||
_mouseAction = MouseAction::PrepareDrag;
|
||||
} else {
|
||||
if (dragState.afterSymbol) ++_mouseTextSymbol;
|
||||
|
|
Loading…
Reference in New Issue