diff options
| author | 2016-01-13 12:17:16 +0100 | |
|---|---|---|
| committer | 2016-01-13 12:17:16 +0100 | |
| commit | 93e3b6f0e14aaab09dcd41c23ad586508c3e320a (patch) | |
| tree | 9e76609c0562091c4924510ac1bedb01ab60da83 /src/modules/http | |
| parent | Second part of #1839 (diff) | |
| download | KVIrc-93e3b6f0e14aaab09dcd41c23ad586508c3e320a.tar.gz KVIrc-93e3b6f0e14aaab09dcd41c23ad586508c3e320a.tar.bz2 KVIrc-93e3b6f0e14aaab09dcd41c23ad586508c3e320a.zip | |
Fix 9bb1262
Diffstat (limited to 'src/modules/http')
| -rw-r--r-- | src/modules/http/HttpFileTransfer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/http/HttpFileTransfer.cpp b/src/modules/http/HttpFileTransfer.cpp index deadbffaf..10fe8115f 100644 --- a/src/modules/http/HttpFileTransfer.cpp +++ b/src/modules/http/HttpFileTransfer.cpp @@ -130,7 +130,7 @@ void HttpFileTransfer::displayPaint(QPainter * p,int column, QRect rect) case Failure: offset = 144; break; } if(g_pHttpIcon) - p->drawPixmap(rect.left() + 3, rect.top() + 3,*g_pHttpIcon,offset,0,48,64); + p->drawPixmap(width / 2 - 48 / 2,rect.top() + height / 2 - 64 / 2,*g_pHttpIcon,offset,0,48,64); } break; case COLUMN_FILEINFO: |
