Browse Source

Fix magnet link name update problem

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
1ce6f4a7c3
  1. 6
      src/main.cpp
  2. 2
      src/qtlibtorrent/torrentmodel.cpp

6
src/main.cpp

@ -294,6 +294,12 @@ int main(int argc, char *argv[]){ @@ -294,6 +294,12 @@ int main(int argc, char *argv[]){
QStringList torrentCmdLine = app.arguments();
// Remove first argument (program name)
torrentCmdLine.removeFirst();
#ifndef QT_NO_DEBUG_OUTPUT
foreach(const QString &argument, torrentCmdLine) {
qDebug() << "Command line argument:" << argument;
}
#endif
#ifndef DISABLE_GUI
MainWindow window(0, torrentCmdLine);
if(!no_splash)

2
src/qtlibtorrent/torrentmodel.cpp

@ -142,7 +142,7 @@ QVariant TorrentModelItem::data(int column, int role) const @@ -142,7 +142,7 @@ QVariant TorrentModelItem::data(int column, int role) const
if(role != Qt::DisplayRole && role != Qt::UserRole) return QVariant();
switch(column) {
case TR_NAME:
return m_name;
return m_name.isEmpty()? m_torrent.name() : m_name;
case TR_PRIORITY:
return m_torrent.queue_position();
case TR_SIZE:

Loading…
Cancel
Save