1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 12:34:19 +00:00

- Fixed log context menu position

- Updated Changelog
This commit is contained in:
Christophe Dumez 2007-09-02 14:42:09 +00:00
parent 4727c1bdca
commit ffb262f0a1
3 changed files with 5 additions and 1 deletions

View File

@ -61,6 +61,7 @@
- COSMETIC: Display more logs messages concerning features - COSMETIC: Display more logs messages concerning features
- COSMETIC: Improved lists renderers - COSMETIC: Improved lists renderers
- COSMETIC: Use a different icon for torrents being checked and for connecting ones - COSMETIC: Use a different icon for torrents being checked and for connecting ones
- COSMETIC: Improved some icons
* Mon May 07 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.3 * Mon May 07 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.3
- BUGFIX: Fixed pause toggle on double-click in download list - BUGFIX: Fixed pause toggle on double-click in download list

3
TODO
View File

@ -54,6 +54,7 @@
- 128m 29m 16m S 4.8 2.9 0:02.28 qbittorrent - 128m 29m 16m S 4.8 2.9 0:02.28 qbittorrent
* beta 7 * beta 7
- Fix storage st creation + hasher in torrent creation - Fix storage st creation + hasher in torrent creation
- Pause all when window in hidden should pause all (both tabs)
- Translations update (IN PROGRESS) - Translations update (IN PROGRESS)
- Wait for some bug fixes in libtorrent : - Wait for some bug fixes in libtorrent :
- Number of seeds non null for finished torrent (Ticket #122) - Number of seeds non null for finished torrent (Ticket #122)
@ -88,3 +89,5 @@ beta6->beta7 changelog:
- BUGFIX: Improved search engine core a little - BUGFIX: Improved search engine core a little
- BUGFIX: Forgot to remove *.pyc files when uninstalling a search plugin - BUGFIX: Forgot to remove *.pyc files when uninstalling a search plugin
- BUGFIX: Fixed drag'n drop on non-KDE systems - BUGFIX: Fixed drag'n drop on non-KDE systems
- BUGFIX: Fixed log context menu position
- COSMETIC: Improved some icons

View File

@ -336,7 +336,7 @@ void DownloadingTorrents::displayInfoBarMenu(const QPoint& pos) {
QMenu myLogMenu(this); QMenu myLogMenu(this);
myLogMenu.addAction(actionClearLog); myLogMenu.addAction(actionClearLog);
// XXX: Why mapToGlobal() is not enough? // XXX: Why mapToGlobal() is not enough?
myLogMenu.exec(mapToGlobal(pos)+QPoint(22,383)); myLogMenu.exec(mapToGlobal(pos)+QPoint(44,305));
} }
void DownloadingTorrents::sortProgressColumnDelayed() { void DownloadingTorrents::sortProgressColumnDelayed() {