From c38742995e88f3ef967268b0af9f3e72a45f1a6d Mon Sep 17 00:00:00 2001 From: zhaolei <353719554@qq.com> Date: Tue, 19 May 2026 15:43:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=A2=E5=88=97=E6=B7=BB=E5=8A=A0=E6=B7=B1?= =?UTF-8?q?=E5=BA=A6=E9=87=8D=E9=87=87=E6=A0=B7=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- logPlus/qtprojectwidgets.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/logPlus/qtprojectwidgets.cpp b/logPlus/qtprojectwidgets.cpp index 8fb6a5c..02be726 100644 --- a/logPlus/qtprojectwidgets.cpp +++ b/logPlus/qtprojectwidgets.cpp @@ -904,6 +904,11 @@ void QtProjectWidgets::initWaveObjectTreeMenu(QMenu *menu, QTreeWidget *treeWidg connect(action_DepthShift, SIGNAL(triggered(bool)), this, SLOT(onDepthShift(bool))); menu->addAction(action_DepthShift); + m_action_DepthResample = new QAction("深度重采样", treeWidget); + m_action_DepthResample->setIcon(QIcon(GetImagePath() + "icon/AddToTrack.png")); // 设置图标 + connect(m_action_DepthResample, SIGNAL(triggered(bool)), this, SLOT(onDepthResample(bool))); + menu->addAction(m_action_DepthResample); + QAction* action_InfoEdit = new QAction("属性编辑", treeWidget); action_InfoEdit->setIcon(QIcon(GetImagePath() + "icon/AddToTrack.png")); connect(action_InfoEdit, SIGNAL(triggered()), this, SLOT(onInfoEdit()));