Skip to content

Commit

Permalink
fix: remove invalid url (#345)
Browse files Browse the repository at this point in the history
remove invalid  url

Log: remove invalid  url
  • Loading branch information
wyu71 authored Dec 20, 2024
1 parent 702a5c8 commit 49abf55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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 100791
QGraphicsViewEx::QGraphicsViewEx(QWidget *parent)
: QGraphicsView(parent)
{
Expand Down

0 comments on commit 49abf55

Please sign in to comment.