##// END OF EJS Templates
Updates AMDA JSON file to handle spectrograms...
Updates AMDA JSON file to handle spectrograms - Sets "dataType" attribute to "spectrogram" for all products that have the "display_type" attribute set to "spectrogram" - Adds "server" attribute to spectrograms products to indicate that the server to use for these is the Amda test server

File last commit:

r912:fedc6e2cf64d
r942:131dd68d9046
Show More
VariableInspectorTableView.cpp
15 lines | 467 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877 #include "Variable/VariableInspectorTableView.h"
Moves the DragDropHelper file
r884 #include "DragAndDrop/DragDropHelper.h"
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877 #include "SqpApplication.h"
Fix format for linux
r912 VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent)
{
}
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions)
{
// Resets the drag&drop operations before it's starting
sqpApp->dragDropHelper().resetDragAndDrop();
QTableView::startDrag(supportedActions);
}