aboutsummaryrefslogtreecommitdiff
path: root/x11/kdebase4-workspace/files/patch-kicker-taskbar-resize.diff
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2006-09-12 23:26:52 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2006-09-12 23:26:52 +0000
commit431622844fcecf9286bca43cbdd9e3ae5ff5e273 (patch)
treee1d9b3f62c8fb343d38afebf5cbf0b93095f1508 /x11/kdebase4-workspace/files/patch-kicker-taskbar-resize.diff
parentb5c6ae5f82611e0c6f470a54bcdce721f86d15e4 (diff)
downloadports-431622844fcecf9286bca43cbdd9e3ae5ff5e273.tar.gz
ports-431622844fcecf9286bca43cbdd9e3ae5ff5e273.zip
KDE 3.5.4 / KOffice 1.5.2
Notes
Notes: svn path=/head/; revision=172898
Diffstat (limited to 'x11/kdebase4-workspace/files/patch-kicker-taskbar-resize.diff')
-rw-r--r--x11/kdebase4-workspace/files/patch-kicker-taskbar-resize.diff19
1 files changed, 19 insertions, 0 deletions
diff --git a/x11/kdebase4-workspace/files/patch-kicker-taskbar-resize.diff b/x11/kdebase4-workspace/files/patch-kicker-taskbar-resize.diff
new file mode 100644
index 000000000000..de1dbb73cc30
--- /dev/null
+++ b/x11/kdebase4-workspace/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
+ {