Revert "Amend a83159f0: Use logical operator ||."

This reverts commit 48c069fa8a.

The commit unintentionally changed behavior. See #13116.
This commit is contained in:
Scott Kostyshak 2024-11-11 21:30:12 +01:00
parent 7bf14813d7
commit 92b656c17b

View File

@ -2856,7 +2856,7 @@ void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
// Notify left insets // Notify left insets
if (cur != old) { if (cur != old) {
bool badcursor = old.fixIfBroken() || cur.fixIfBroken(); bool badcursor = old.fixIfBroken() || cur.fixIfBroken();
badcursor = badcursor || notifyCursorLeavesOrEnters(old, cur); badcursor |= notifyCursorLeavesOrEnters(old, cur);
if (badcursor) if (badcursor)
cursor().fixIfBroken(); cursor().fixIfBroken();
} }