mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 23:11:44 +03:00
fix Cursor move up and down error
This commit is contained in:
parent
eb2ad57c5a
commit
c5d2525086
@ -146,7 +146,7 @@ export const TextManage = forwardRef<ExtendedTextUtils, CreateTextView>(
|
|||||||
.getElementsByClassName('text-paragraph')[0]
|
.getElementsByClassName('text-paragraph')[0]
|
||||||
.getBoundingClientRect();
|
.getBoundingClientRect();
|
||||||
|
|
||||||
if (rang_form === 'up') {
|
if (blockTop > blockDomStyle.top) {
|
||||||
blockTop = blockDomStyle.bottom - 5;
|
blockTop = blockDomStyle.bottom - 5;
|
||||||
} else {
|
} else {
|
||||||
blockTop = blockDomStyle.top + 5;
|
blockTop = blockDomStyle.top + 5;
|
||||||
@ -319,7 +319,7 @@ export const TextManage = forwardRef<ExtendedTextUtils, CreateTextView>(
|
|||||||
if (nowPosition.top === startPosition.top) {
|
if (nowPosition.top === startPosition.top) {
|
||||||
editor.selectionManager.activePreviousNode(
|
editor.selectionManager.activePreviousNode(
|
||||||
block.id,
|
block.id,
|
||||||
new Point(nowPosition.left, nowPosition.top - 20)
|
new Point(nowPosition.left, nowPosition.top)
|
||||||
);
|
);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -357,17 +357,14 @@ export const TextManage = forwardRef<ExtendedTextUtils, CreateTextView>(
|
|||||||
// The specific amount of TODO needs to be determined after subsequent padding
|
// The specific amount of TODO needs to be determined after subsequent padding
|
||||||
editor.selectionManager.activeNextNode(
|
editor.selectionManager.activeNextNode(
|
||||||
block.id,
|
block.id,
|
||||||
new Point(nowPosition.left, nowPosition.bottom + 20)
|
new Point(nowPosition.left, nowPosition.bottom)
|
||||||
);
|
);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
if (prePosition?.bottom === endPosition.bottom) {
|
if (prePosition?.bottom === endPosition.bottom) {
|
||||||
editor.selectionManager.activeNextNode(
|
editor.selectionManager.activeNextNode(
|
||||||
block.id,
|
block.id,
|
||||||
new Point(
|
new Point(prePosition.left, prePosition?.bottom)
|
||||||
prePosition.left,
|
|
||||||
prePosition?.bottom + 20
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user