From 88a58e69d383a9f4deda3dab4849f1bd0e9766e0 2017-06-30 14:12:01 From: mperrinel Date: 2017-06-30 14:12:01 Subject: [PATCH] The data of the variable is now requested with the new provided parameters --- diff --git a/core/src/Variable/VariableController.cpp b/core/src/Variable/VariableController.cpp index 80036b7..b348b95 100644 --- a/core/src/Variable/VariableController.cpp +++ b/core/src/Variable/VariableController.cpp @@ -125,6 +125,7 @@ void VariableController::onDateTimeOnSelection(const SqpDateTime &dateTime) for (const auto &selectedRow : qAsConst(selectedRows)) { if (auto selectedVariable = impl->m_VariableModel->variable(selectedRow.row())) { selectedVariable->setDateTime(dateTime); + this->onRequestDataLoading(selectedVariable, dateTime); } } }