Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
issakomi committed May 30, 2024
1 parent 41fb094 commit f6d75ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser/sqtree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2010,9 +2010,9 @@ void SQtree::dropEvent(QDropEvent * e)
{
QStringList l;
const QList<QUrl> urls = mimeData->urls();
for (int i = 0; i < urls.size(); ++i)
if (!urls.empty())
{
l.push_back(urls.at(i).toLocalFile());
l.push_back(urls.at(0).toLocalFile());
}
if (!l.empty())
{
Expand Down

0 comments on commit f6d75ad

Please sign in to comment.