##// END OF EJS Templates
Revert "Disables TestVariableSync"...
Revert "Disables TestVariableSync" This reverts commit 447f2dd17d69d7e4c0b9086ab4f4bf699fd6920e.

File last commit:

r890:9b45c5936f92
r896:e0273b51bb7c
Show More
VariableInspectorTableView.cpp
13 lines | 464 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
#include "Variable/VariableInspectorTableView.h"
#include "DragAndDrop/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);
}