diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-03-06 15:49:46 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-03-06 15:49:46 +0000 |
| commit | 0452a8e813068eefda9e8b66f00893ec18bcb073 (patch) | |
| tree | 4aaa55d58c2cb6ba23eb7d8f03cb6b4580f89b13 /src/plugins/Ui/skinned/playlistheader.cpp | |
| parent | b0600c50c6b98e5df02f8eb150ea2aa70375ef4e (diff) | |
| download | qmmp-0452a8e813068eefda9e8b66f00893ec18bcb073.tar.gz qmmp-0452a8e813068eefda9e8b66f00893ec18bcb073.tar.bz2 qmmp-0452a8e813068eefda9e8b66f00893ec18bcb073.zip | |
fixed colors
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4759 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/skinned/playlistheader.cpp')
| -rw-r--r-- | src/plugins/Ui/skinned/playlistheader.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/plugins/Ui/skinned/playlistheader.cpp b/src/plugins/Ui/skinned/playlistheader.cpp index 95a25fbfb..5dadc8a34 100644 --- a/src/plugins/Ui/skinned/playlistheader.cpp +++ b/src/plugins/Ui/skinned/playlistheader.cpp @@ -120,11 +120,19 @@ void PlayListHeader::paintEvent(QPaintEvent *) painter.setBrush(m_normal_bg); painter.drawRect(-1,-1,width()+1,height()+1); - painter.setPen(m_normal); + + int sx = 5 + 3 + m_number_width + m_metrics->width("9"); - painter.drawLine(0, height()-1, width(), height()-1); + + painter.setBrush(m_normal); + painter.setPen(m_normal); + painter.drawRect(5,-1,width()-10,height()+1); + + painter.setPen(m_normal_bg); + + //painter.drawLine(0, height()-1, width(), height()-1); for(int i = 0; i < m_manager->count(); ++i) { |
