Browse Source

- Removed bad assert

- Improved updateDlList function a little
adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
bd8ec01add
  1. 11
      src/GUI.cpp

11
src/GUI.cpp

@ -551,15 +551,14 @@ void GUI::updateDlList(bool force){ @@ -551,15 +551,14 @@ void GUI::updateDlList(bool force){
if(systrayIntegration){
myTrayIcon->setToolTip("<b>"+tr("qBittorrent")+"</b><br>"+tr("DL speed: %1 KiB/s", "e.g: Download speed: 10 KiB/s").arg(QString(tmp2))+"<br>"+tr("UP speed: %1 KiB/s", "e.g: Upload speed: 10 KiB/s").arg(QString(tmp))); // tray icon
}
if( !force && (isMinimized() || isHidden() || tabs->currentIndex() > 1)){
// No need to update if qBittorrent DL list is hidden
if(tabs->currentIndex() == 1){
finishedTorrentTab->updateFinishedList();
return;
}
if(tabs->currentIndex()){
finishedTorrentTab->updateFinishedList();
if(!force && getCurrentTabIndex() != 0){
// No need to update if qBittorrent DL list is hidden
return;
}
Q_ASSERT(tabs->currentIndex() == 0);
LCD_UpSpeed->display(tmp); // UP LCD
LCD_DownSpeed->display(tmp2); // DL LCD
// browse handles
@ -658,6 +657,8 @@ void GUI::updateDlList(bool force){ @@ -658,6 +657,8 @@ void GUI::updateDlList(bool force){
}
unsigned int GUI::getCurrentTabIndex() const{
if(isMinimized() || isHidden())
return -1;
return tabs->currentIndex();
}

Loading…
Cancel
Save