- fix: Click on the line begin may toggle breakpoint.

This commit is contained in:
Roy Qu 2023-11-19 16:53:29 +08:00
parent 49237ebf03
commit a6b9d282cf
1 changed files with 1 additions and 1 deletions

View File

@ -6239,7 +6239,7 @@ void QSynEdit::mouseReleaseEvent(QMouseEvent *event)
int X=event->pos().x();
/* int Y=event->pos().y(); */
if (!mMouseMoved && (X <= mGutterWidth )) {
if (!mMouseMoved && (X < mGutterWidth )) {
processGutterClick(event);
}