Commit 5521f25c authored by Dmitry Batrak's avatar Dmitry Batrak
Browse files

IDEA-191018 Selection under diff popup does not work

parent 74013fa2
Branches unavailable Tags unavailable
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -2325,7 +2325,7 @@ public final class EditorImpl extends UserDataHolderBase implements EditorEx, Hi
dy = y - visibleArea.y;
}
else {
if (y > visibleArea.y + visibleArea.height) {
if (y > visibleArea.y + visibleArea.height && visibleArea.y + visibleArea.height < myEditorComponent.getHeight()) {
dy = y - visibleArea.y - visibleArea.height;
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment