aboutsummaryrefslogtreecommitdiff
path: root/x11/kdebase3/files/patch-kicker-taskbar-resize.diff
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdebase3/files/patch-kicker-taskbar-resize.diff')
-rw-r--r--x11/kdebase3/files/patch-kicker-taskbar-resize.diff19
1 files changed, 19 insertions, 0 deletions
diff --git a/x11/kdebase3/files/patch-kicker-taskbar-resize.diff b/x11/kdebase3/files/patch-kicker-taskbar-resize.diff
new file mode 100644
index 000000000000..de1dbb73cc30
--- /dev/null
+++ b/x11/kdebase3/files/patch-kicker-taskbar-resize.diff
@@ -0,0 +1,19 @@
+--- kicker/taskbar/taskbar.cpp (revision 570839)
++++ kicker/taskbar/taskbar.cpp (revision 570840)
+@@ -177,14 +177,14 @@ QSize TaskBar::sizeHint( KPanelExtension
+
+ if (containerCount() == 0)
+ {
+- actualMax = maxSize.height();
++ actualMax = minButtonHeight;
+ }
+
+ if (actualMax > maxSize.height())
+ {
+ return maxSize;
+ }
+- return QSize( maxSize.width(), maxSize.height() );
++ return QSize( maxSize.width(), actualMax );
+ }
+ else
+ {