Commit d711d1157c316027efd296f7a8c399329804c323

don't crash if the lyrics applet tries to access the view before it exists

BUG: 228096
  
544544 // only show vertical scrollbar if there are lyrics and is needed
545545 browser->setVerticalScrollBarPolicy( m_hasLyrics ? Qt::ScrollBarAsNeeded : Qt::ScrollBarAlwaysOff );
546546
547 // maybe we were just added, don't have a view yet
548 if( !containment()->view() )
549 return;
550
547551 const qreal containerOffset = mapToView( containment()->view(), boundingRect() ).topLeft().y();
548552 const qreal containerHeight = containment()->size().height() - containerOffset;
549553 const qreal collapsedHeight = ( contentHeight > containerHeight ) ? containerHeight : contentHeight;