Skip to content

Commit

Permalink
update rest api to core 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Gueudelot committed Jun 6, 2018
1 parent 9e20af3 commit 9a3c798
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Model/regovar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void Regovar::loadConfigData()
void Regovar::loadWelcomData()
{
setWelcomIsLoading(true);
Request* req = Request::get(QString("/"));
Request* req = Request::get(QString("/welcome"));
connect(req, &Request::responseReceived, [this, req](bool success, const QJsonObject& json)
{
if (success)
Expand Down
12 changes: 11 additions & 1 deletion app/UI/Pages/Analysis/Filtering/SummaryPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,17 @@ Rectangle
Layout.alignment: Qt.AlignTop
id: statusButton
text: ""
onClicked: computingProgressLog.visible = true
onClicked:
{
if (root.model.status == "empty" || root.model.status == "close")
{

}
else
{
computingProgressLog.visible = true
}
}
ToolTip.text: qsTr("Display details")
ToolTip.visible: hovered
}
Expand Down

0 comments on commit 9a3c798

Please sign in to comment.