Fix bug when used together with metacity

The playlist and equalizer windows where hidden when switching to
another desktop
This commit is contained in:
Thomas Frauendorfer 2008-06-09 03:12:51 +02:00
parent 221e1255d0
commit d1a98b5367
3 changed files with 3 additions and 19 deletions

View file

@ -142,9 +142,6 @@ PlaylistView::PlaylistView (QWidget *parent) : QListView (parent)
connect (xmmsh.xplayback (), SIGNAL(playbackStatusChanged(Xmms::Playback::Status)),
this, SLOT(handleStatus(Xmms::Playback::Status)));
connect (this, SIGNAL (clicked (QModelIndex)),
this, SLOT (on_item_clicked (QModelIndex)));
}
void
@ -200,7 +197,7 @@ PlaylistView::contextMenuEvent (QContextMenuEvent *e)
qm.addSeparator ();
a= new QAction (tr ("Change Playlist"), this);
a= new QAction (tr ("Choose Playlist"), this);
connect (a, SIGNAL (triggered ()), qobject_cast<PlaylistWidget *>(parent ()), SLOT (openPlaylistChooser ()));
qm.addAction (a);
@ -306,13 +303,3 @@ PlaylistView::showEntryInfo (void)
m_entry_info->show ();
}
}
void
PlaylistView::on_item_clicked (QModelIndex index)
{
if (m_entry_info) {
uint32_t id = model ()->data (index, PlaylistModel::MedialibIdRole)
.toUInt ();
m_entry_info->setId (id);
}
}