mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-26 10:01:50 +00:00
Revert "Amend a83159f0: Use logical operator ||."
This reverts commit 48c069fa8aec72840dc55688e21c38c5dd321e66. The commit unintentionally changed behavior. See #13116.
This commit is contained in:
parent
7bf14813d7
commit
92b656c17b
@ -2856,7 +2856,7 @@ void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
|
||||
// Notify left insets
|
||||
if (cur != old) {
|
||||
bool badcursor = old.fixIfBroken() || cur.fixIfBroken();
|
||||
badcursor = badcursor || notifyCursorLeavesOrEnters(old, cur);
|
||||
badcursor |= notifyCursorLeavesOrEnters(old, cur);
|
||||
if (badcursor)
|
||||
cursor().fixIfBroken();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user