FunctionEditor: add explanation label

This commit is contained in:
Jussi Kuokkanen 2023-07-21 21:32:56 +03:00
parent cc67835c00
commit 5665786978

View File

@ -9,7 +9,6 @@
*/ */
#include "DynamicReadableProxy.hpp" #include "DynamicReadableProxy.hpp"
#include "qnamespace.h"
#include <AssignableConnection.hpp> #include <AssignableConnection.hpp>
#include <AssignableProxy.hpp> #include <AssignableProxy.hpp>
#include <boost/signals2.hpp> #include <boost/signals2.hpp>
@ -60,6 +59,9 @@ public:
// Try not to cut off node names // Try not to cut off node names
treeView->header()->setSectionResizeMode(QHeaderView::ResizeToContents); treeView->header()->setSectionResizeMode(QHeaderView::ResizeToContents);
m_dependableLabel = new QLabel(QString("Connecting %1 with:").arg(nodeName));
m_layout->addWidget(m_dependableLabel, 0, 0, 1, 2);
m_layout->addWidget(m_dependableReadableComboBox, 1, 0, 1, 2);
m_dragView = new DragChartView; m_dragView = new DragChartView;
p::match(rangeInfo) ( p::match(rangeInfo) (