Commit c57d47db authored by Adrien Maglo's avatar Adrien Maglo

Qt/EPG: Use the right function to update the EPGItem position.

parent beb86eee
...@@ -62,7 +62,7 @@ void EPGView::setStartTime( const QDateTime& startTime ) ...@@ -62,7 +62,7 @@ void EPGView::setStartTime( const QDateTime& startTime )
{ {
EPGItem* item = qgraphicsitem_cast<EPGItem*>( itemList.at( i ) ); EPGItem* item = qgraphicsitem_cast<EPGItem*>( itemList.at( i ) );
if ( !item ) continue; if ( !item ) continue;
item->setStart( item->start() ); item->updatePos();
} }
// Our start time has changed // Our start time has changed
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment