mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-13 20:39:57 +01:00
* Fixed dupe connections (hopefully).
This commit is contained in:
parent
40fc9d5c57
commit
7a21354f57
@ -640,8 +640,8 @@ TomahawkApp::jabberMessage( const QString& from, const QString& msg )
|
||||
else
|
||||
{
|
||||
qDebug() << Q_FUNC_INFO << "They are not visible, doing nothing atm";
|
||||
if ( m_servent.visibleExternally() )
|
||||
jabberPeerOnline( from ); // HACK FIXME
|
||||
// if ( m_servent.visibleExternally() )
|
||||
// jabberPeerOnline( from ); // HACK FIXME
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,6 @@ TransferView::fileTransferRegistered( FileTransferConnection* ftc )
|
||||
{
|
||||
qDebug() << Q_FUNC_INFO;
|
||||
connect( ftc, SIGNAL( updated() ), SLOT( onTransferUpdate() ) );
|
||||
emit showWidget();
|
||||
}
|
||||
|
||||
|
||||
@ -87,6 +86,7 @@ TransferView::onTransferUpdate()
|
||||
{
|
||||
ti = new QTreeWidgetItem( m_tree );
|
||||
m_index.insert( ftc, m_tree->invisibleRootItem()->childCount() - 1 );
|
||||
emit showWidget();
|
||||
}
|
||||
|
||||
if ( !ti )
|
||||
|
Loading…
x
Reference in New Issue
Block a user