summaryrefslogtreecommitdiffstats
path: root/opensuse/core/qt3/0047-fix-kmenu-width.diff
diff options
context:
space:
mode:
Diffstat (limited to 'opensuse/core/qt3/0047-fix-kmenu-width.diff')
-rw-r--r--opensuse/core/qt3/0047-fix-kmenu-width.diff23
1 files changed, 0 insertions, 23 deletions
diff --git a/opensuse/core/qt3/0047-fix-kmenu-width.diff b/opensuse/core/qt3/0047-fix-kmenu-width.diff
deleted file mode 100644
index 398ca0cc4..000000000
--- a/opensuse/core/qt3/0047-fix-kmenu-width.diff
+++ /dev/null
@@ -1,23 +0,0 @@
-qt-bugs@ issue: N46882
-bugs.kde.org number: 77545
-applied: no
-author: Stephan Binner <binner@kde.org>
-
-Fix wrong K menu width for the case of enabled side pixmap and a menu title
-(like "Recently Used Applications") being longer than every other entry.
-
-Solution: Respect PanelKMenu::setMaximumSize() as up to Qt 3.2.3
-
-Index: src/widgets/qpopupmenu.cpp
-================================================================================
---- src/widgets/qpopupmenu.cpp
-+++ src/widgets/qpopupmenu.cpp
-@@ -2530,7 +2530,7 @@
- constPolish();
- QPopupMenu* that = (QPopupMenu*) this;
- //We do not need a resize here, just the sizeHint..
-- return that->updateSize(FALSE, FALSE).expandedTo( QApplication::globalStrut() );
-+ return that->updateSize(FALSE).expandedTo( QApplication::globalStrut() );
- }
-
-