1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 18:45:38 +00:00

Do not make redundant copy

This commit is contained in:
Andrei Kortunov 2024-07-01 20:50:25 +04:00
parent 3ebeaaa3bb
commit a9108a743d

View file

@ -71,7 +71,7 @@ bool CSVWorld::DataDisplayDelegate::eventFilter(QObject* target, QEvent* event)
QColor themeColor = QApplication::palette().text().color();
if (themeColor != mPixmapsColor)
{
mPixmapsColor = themeColor;
mPixmapsColor = std::move(themeColor);
buildPixmaps();
}