Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/src/circlepushbutton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ void circlePushButton::mousePressEvent(QMouseEvent *event)

void circlePushButton::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在按钮中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在按钮中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/filterpreviewbutton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void filterPreviewButton::mousePressEvent(QMouseEvent *event)

void filterPreviewButton::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在按钮中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在按钮中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/imageitem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void ImageItem::mousePressEvent(QMouseEvent *event)

void ImageItem::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在缩略图中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在缩略图中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/photorecordbtn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void photoRecordBtn::mousePressEvent(QMouseEvent *event)

void photoRecordBtn::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在按钮中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在按钮中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/videowidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
static PRIVIEW_ENUM_STATE g_Enum_Camera_State = PICTRUE;

// 重写QGraphicsView类,在子类中,直接将鼠标事件路由到QWidget,这样QGraphicsScene不会接收和处理鼠标事件
// bug链接 https://pms.uniontech.com/zentao/bug-view-100791.html
// bug链接 bug 100791
QGraphicsViewEx::QGraphicsViewEx(QWidget *parent)
: QGraphicsView(parent)
{
Expand Down