##// END OF EJS Templates
Minor fix...
Minor fix By default sets the management mode of the thresholds of a color scale to 'manual', to avoid the recalculation of the thresholds for scalars and vectors

File last commit:

r1075:029fbf916457
r1110:0e96e473601d
Show More
VariableInspectorTableView.cpp
15 lines | 481 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
#include "Variable/VariableInspectorTableView.h"
#include "DragAndDrop/DragDropGuiController.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->dragDropGuiController().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}