summaryrefslogtreecommitdiff
path: root/libre/kdebase-konqueror-libre/kdebug-324511.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-09-11 03:21:51 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-09-11 03:21:51 -0300
commita9a8a7067fef31299cddc4b2628dbf73b398f395 (patch)
tree47e075883d277d449a026065ce95c4137c41c406 /libre/kdebase-konqueror-libre/kdebug-324511.patch
parent77d60420680c065b7ed54e8348ec6ae4475d7f44 (diff)
kdebase-konqueror-libre-4.11.1-2: fix bookmarks not shown in toolbar
* See https://bugs.archlinux.org/task/36852
Diffstat (limited to 'libre/kdebase-konqueror-libre/kdebug-324511.patch')
-rw-r--r--libre/kdebase-konqueror-libre/kdebug-324511.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/libre/kdebase-konqueror-libre/kdebug-324511.patch b/libre/kdebase-konqueror-libre/kdebug-324511.patch
new file mode 100644
index 000000000..cca2a7254
--- /dev/null
+++ b/libre/kdebase-konqueror-libre/kdebug-324511.patch
@@ -0,0 +1,25 @@
+commit 43a981481ab9161a83dd200db39c093e2502f68a
+Author: Bernd Buschinski <b.buschinski@googlemail.com>
+Date: Wed Sep 4 16:23:35 2013 +0200
+
+ Fix toplevel bookmarks not showing in toolbar
+ regression from d1963e23
+
+diff --git a/konqueror/src/konqbookmarkbar.cpp b/konqueror/src/konqbookmarkbar.cpp
+index 2141575..199e15f 100644
+--- a/konqueror/src/konqbookmarkbar.cpp
++++ b/konqueror/src/konqbookmarkbar.cpp
+@@ -184,10 +184,12 @@ void KBookmarkBar::fillBookmarkBar(const KBookmarkGroup & parent)
+
+ if (!bm.isGroup())
+ {
+- if ( bm.isSeparator() )
++ if ( bm.isSeparator() )
++ {
+ if (m_toolBar) {
+ m_toolBar->addSeparator();
+ }
++ }
+ else
+ {
+ KAction *action = new KBookmarkAction( bm, m_pOwner, 0 );