Skip to content

Commit

Permalink
fix problem part II
Browse files Browse the repository at this point in the history
  • Loading branch information
Ponchale committed Nov 5, 2024
1 parent 4e27152 commit ab8a7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widget/WidgetEventImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -428,10 +428,10 @@ bool WidgetEvent::WillBeSentToRemoteProcess() const {
nsIContent::FromEventTarget(mOriginalTarget));
}

bool WidgetEvent::IsIMERelatedEvent() const {
return HasIMEEventMessage() ||
(IsQueryContentEvent() && mMessage != eQueryDropTargetHittest) ||
IsSelectionEvent();
return HasIMEEventMessage() || IsQueryContentEvent() || IsSelectionEvent();
}

bool WidgetEvent::IsUsingCoordinates() const {
Expand Down

0 comments on commit ab8a7c9

Please sign in to comment.