Skip to content

Commit

Permalink
corrected rebase conflict fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m0dB authored and m0dB committed Mar 22, 2024
1 parent 438929f commit d676357
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/widget/wtracktableview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -577,13 +577,11 @@ void WTrackTableView::mouseMoveEvent(QMouseEvent* pEvent) {
}
//qDebug() << "MouseMoveEvent";
// Iterate over selected rows and append each item's location url to a list.
QList<QString> locations;
const QModelIndexList indices = getSelectedRows();

if (DragAndDropHelper::mouseMoveInitiatesDrag(pEvent)) {
// Iterate over selected rows and append each item's location url to a list.
QList<QString> locations;
const QModelIndexList indices = selectionModel()->selectedRows();
const QModelIndexList indices = getSelectedRows();

for (const QModelIndex& index : indices) {
if (!index.isValid()) {
Expand Down

0 comments on commit d676357

Please sign in to comment.