Merge pull request #1951 from KLayout/issue-1948

Fixing issue #1948 (crash on dragging a cell) - problem was the popup…
This commit is contained in:
Matthias Köfferlein 2025-01-04 19:35:08 +01:00 committed by GitHub
commit f08c3a65da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 4 deletions

View File

@ -293,7 +293,8 @@ public:
}
END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}
void dragLeaveEvent (QDragLeaveEvent * /*event*/)
@ -309,7 +310,8 @@ public:
svc = next;
}
END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}
void dragMoveEvent (QDragMoveEvent *event)
@ -332,7 +334,8 @@ public:
}
END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}
void dropEvent (QDropEvent *event)
@ -355,7 +358,8 @@ public:
}
END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}
void mouseMoveEvent (QMouseEvent *e)