Custom Query (2447 matches)
Results (520 - 522 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#219 | Invalid | Split details into two tabs | ||
Description |
The details tab currently consists of two boxes: "Statistics" and "Torrent info". These boxes can become quite wide when displaying a torrent that has a large filename or path. Because these two boxes are displayed next to each other a horizontal scroll bar is displayed when they become wider than the window width itself. This occurs even more often when the deluge window is not maximized. Can the details tab be removed and replaced by two new tabs: a Statistics and a Torrent Info tab? I think this would make the interface cleaner and easier for users. The Statistics tab would be the logical default tab to display, as this contains the most important information. |
|||
#1064 | Fixed | spins CPU due to incorrect polling | ||
Description |
rc3 spins the CPU due to not polling correctly. poll([{fd=7, events=POLLIN}, {fd=5, events=POLLIN}, {fd=10, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, events=POLLIN}, {fd=12, events=POLLIN}, {fd=13, events=POLLIN}, {fd=4, events=POLLIN}], 8, 18) = 1 ([{fd=9, revents=POLLIN}]) read(10, 0x1b3c8b4, 4096) = -1 EAGAIN (Resource temporarily unavailable) It's fd 9 that has incoming data and read(2) is called on fd 10. |
|||
#1065 | Invalid | spins CPU due to incorrect polling | ||
Description |
rc3 spins the CPU due to not polling correctly. poll([{fd=7, events=POLLIN}, {fd=5, events=POLLIN}, {fd=10, events=POLLIN}, {fd=3, events=POLLIN}, {fd=9, events=POLLIN}, {fd=12, events=POLLIN}, {fd=13, events=POLLIN}, {fd=4, events=POLLIN}], 8, 18) = 1 ([{fd=9, revents=POLLIN}]) read(10, 0x1b3c8b4, 4096) = -1 EAGAIN (Resource temporarily unavailable) It's fd 9 that has incoming data and read(2) is called on fd 10. |