##// END OF EJS Templates
Add an empty area at the bottom of the tab where a new zone can be created from a drop. Differentiate graph and zone placeHolders.
Add an empty area at the bottom of the tab where a new zone can be created from a drop. Differentiate graph and zone placeHolders.

File last commit:

r877:4dce99ba7a36
r881:f5851ce3ff09
Show More
VariableInspectorTableView.cpp
13 lines | 452 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
#include "Variable/VariableInspectorTableView.h"
#include "DragDropHelper.h"
#include "SqpApplication.h"
VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent) {}
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions)
{
// Resets the drag&drop operations before it's starting
sqpApp->dragDropHelper().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}