mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-20 21:41:35 +00:00
Do not make redundant copy
This commit is contained in:
parent
3ebeaaa3bb
commit
a9108a743d
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ bool CSVWorld::DataDisplayDelegate::eventFilter(QObject* target, QEvent* event)
|
||||||
QColor themeColor = QApplication::palette().text().color();
|
QColor themeColor = QApplication::palette().text().color();
|
||||||
if (themeColor != mPixmapsColor)
|
if (themeColor != mPixmapsColor)
|
||||||
{
|
{
|
||||||
mPixmapsColor = themeColor;
|
mPixmapsColor = std::move(themeColor);
|
||||||
|
|
||||||
buildPixmaps();
|
buildPixmaps();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue