- Use 16px tray icon on windows

- Updated TODO
This commit is contained in:
Christophe Dumez
2008-01-04 19:49:19 +00:00
parent 71149e7baa
commit 0b9452ac30
2 changed files with 5 additions and 11 deletions

11
TODO
View File

@@ -44,14 +44,3 @@
* free disk space on selected drive
* free disk space after torrent download (and/or torrent size)
TODO:
- Check search engine cpu usage
rc10->rc11? changelog:
- BUGFIX: Bypass exit confirmation on system shutdown
- BUGFIX: Download from urls are now able to follow redirections
- BUGFIX: Clean up for failed torrents downloaded from urls
- BUGFIX: Fixed downloads from URLs on Windows
- BUGFIX: Fixed search engine on Windows
- BUGFIX: Fixed torrent creation from a directory
- BUGFIX: Fixed save path when seeding automatically after torrent creation

View File

@@ -1185,7 +1185,12 @@ void GUI::downloadFromURLList(const QStringList& urls) {
void GUI::createTrayIcon() {
// Tray icon
#ifdef Q_WS_WIN
myTrayIcon = new QSystemTrayIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent16.png")), this);
#endif
#ifndef Q_WS_WIN
myTrayIcon = new QSystemTrayIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent22.png")), this);
#endif
// Tray icon Menu
myTrayIconMenu = new QMenu(this);
myTrayIconMenu->addAction(actionOpen);