Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/laybasic/laybasic/layViewObject.cc
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ class ViewObjectQWidget : public QWidget

}

END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}

void dragLeaveEvent (QDragLeaveEvent * /*event*/)
Expand All @@ -309,7 +310,8 @@ class ViewObjectQWidget : public QWidget
svc = next;
}

END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}

void dragMoveEvent (QDragMoveEvent *event)
Expand All @@ -332,7 +334,8 @@ class ViewObjectQWidget : public QWidget

}

END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}

void dropEvent (QDropEvent *event)
Expand All @@ -355,7 +358,8 @@ class ViewObjectQWidget : public QWidget

}

END_PROTECTED
// Note: Qt does not like popups during drag-and-drop operations ...
END_PROTECTED_SILENT
}

void mouseMoveEvent (QMouseEvent *e)
Expand Down
Loading