mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-25 21:59:30 +01:00
RackWidget: fix a bug when the rack is filtered (wrong variable used)
This commit is contained in:
parent
02f284f3ae
commit
c34bd76918
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ void RackWidget::refresh()
|
|||
for (unsigned int i = 0; i < tilesCount; ++i)
|
||||
{
|
||||
TileWidget *tileWidget = m_tilesVect[i];
|
||||
tileWidget->tileChanged(TileWidget::NORMAL, m_tiles[i]);
|
||||
tileWidget->tileChanged(TileWidget::NORMAL, m_filteredTiles[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue