1
0
Fork 0

Fix timer leaks

This commit is contained in:
torusrxxx 2020-08-06 11:10:58 +08:00
parent c0684f923d
commit 89af17f380
No known key found for this signature in database
GPG Key ID: A795C73A0F1CFADD
1 changed files with 2 additions and 1 deletions

View File

@ -1308,7 +1308,8 @@ void AbstractTableView::ShowDisassemblyPopup(duint addr, int x, int y)
mDisassemblyPopup->move(mapToGlobal(QPoint(x + 20, y + fontMetrics().height() * 2)));
mDisassemblyPopup->setAddress(addr);
//mDisassemblyPopup->show();
mPopupTimer = startTimer(QApplication::startDragTime());
if(mPopupTimer == 0)
mPopupTimer = startTimer(QApplication::startDragTime());
}
else
{