Skip to content

Commit

Permalink
Change LTMPopup Click-thru to use the new navigation model
Browse files Browse the repository at this point in the history
For consistency with new charts.
  • Loading branch information
amtriathlon committed Jul 22, 2020
1 parent 5d18b81 commit 1dde50f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Charts/LTMPopup.cpp
Expand Up @@ -99,7 +99,7 @@ LTMPopup::LTMPopup(Context *context) : QWidget(context->mainWindow), context(con
mainLayout->addWidget(notes);

connect(rides, SIGNAL(itemSelectionChanged()), this, SLOT(rideSelected()));
connect(rides, SIGNAL(itemDoubleClicked(QTableWidgetItem*)), this, SLOT(rideOpen()));
connect(rides, SIGNAL(itemClicked(QTableWidgetItem*)), this, SLOT(rideOpen()));

}

Expand Down Expand Up @@ -533,8 +533,6 @@ LTMPopup::rideOpen()

// Select Activity in Activities view
context->notifyRideSelected(have);
// Select Activities view
context->mainWindow->selectAnalysis();
}
}
}
Expand Down

0 comments on commit 1dde50f

Please sign in to comment.