Removed some TODOs

The comment is still there in case it's interesting for someone,
but it's not something that will be worked on
This commit is contained in:
Sergio Martins
2022-06-18 22:05:29 +01:00
parent 49b2a10cc6
commit ff92af1e62
5 changed files with 6 additions and 7 deletions

View File

@@ -148,7 +148,7 @@ bool Platform_qtwidgets::inDisallowedDragView(QPoint globalPos) const
return false;
// User might have a line edit on the toolbar.
// TODO: Not so elegant fix, we should make the user's tabbar implement some virtual method...
// Not so elegant fix, we should make the user's tabbar implement some virtual method...
return qobject_cast<QAbstractButton *>(widget) || qobject_cast<QLineEdit *>(widget);
}