diff options
author | Robert Xu <robxu9@gmail.com> | 2011-08-24 17:26:04 -0400 |
---|---|---|
committer | Robert Xu <robxu9@gmail.com> | 2011-08-24 17:26:04 -0400 |
commit | 93c66bf8bb8ac0124ae1800cbaaeb814742bfac5 (patch) | |
tree | 2551422a7981b35684110fae090223b7a1b6d73f /opensuse/tdebase/taskbar.patch | |
parent | 425774d7d1d663e08bb06050924f2eeca9147bba (diff) | |
download | tde-packaging-93c66bf8bb8ac0124ae1800cbaaeb814742bfac5.tar.gz tde-packaging-93c66bf8bb8ac0124ae1800cbaaeb814742bfac5.zip |
dbus-1-tqt -> libdbus-tqt-1-0 AND tdelibs import (unchanged)
Diffstat (limited to 'opensuse/tdebase/taskbar.patch')
-rw-r--r-- | opensuse/tdebase/taskbar.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/opensuse/tdebase/taskbar.patch b/opensuse/tdebase/taskbar.patch new file mode 100644 index 000000000..f8e526e6d --- /dev/null +++ b/opensuse/tdebase/taskbar.patch @@ -0,0 +1,29 @@ +--- kicker/taskbar/taskcontainer.cpp.orig 2011-02-12 00:40:57.060389620 +0300 ++++ kicker/taskbar/taskcontainer.cpp 2011-02-12 02:03:08.345389684 +0300 +@@ -576,9 +576,9 @@ + // draw button background + if (drawButton) + { +- style().drawPrimitive(QStyle::PE_HeaderSection, p, +- QRect(0, 0, width(), height()), +- colors); ++ style().drawPrimitive(QStyle::PE_HeaderSection, p, ++ QRect(1, 1, width()-2, height()-2), ++ colors, sunken ? QStyle::Style_Down : QStyle::Style_Raised); + } + + // shift button label on sunken buttons +@@ -674,11 +674,11 @@ + } + else + { +- textPen = p->pen(); ++ textPen = QPen(colors.buttonText()); //textPen = p->pen(); + } + } + +- int availableWidth = width() - (br.x() * 2) - textPos; ++ int availableWidth = width() - (br.x() * 2) - textPos - 4; + if (m_filteredTasks.count() > 1) + { + availableWidth -= 8; |