Hi,

the current TabBar moving is buggy on my installation.
If you open two tabs and move the right one to the left (over the left edge of 
the window) no tab is selected and you get many segfaults, because there is no 
currentTab at that time.

The wrong behavior is gone after removing one line in mainview.cpp (patch 
attached) and the TabBar seems to work just fine without it.

Thanks,
Johannes
diff --git a/src/mainview.cpp b/src/mainview.cpp
index c28953d..a09ae2d 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -84,7 +84,6 @@ MainView::MainView(QWidget *parent)
     connect(m_tabBar, SIGNAL(closeOtherTabs(int)), this, SLOT(slotCloseOtherTabs(int)));
     connect(m_tabBar, SIGNAL(reloadTab(int)), this, SLOT(slotReloadTab(int)));
     connect(m_tabBar, SIGNAL(reloadAllTabs()), this, SLOT(slotReloadAllTabs()));
-    connect(m_tabBar, SIGNAL(tabMoved(int, int)), this, SLOT(moveTab(int, int)));
 
     // connecting urlbar signals
     connect(urlBar(), SIGNAL(activated(const KUrl&)), Application::instance(), SLOT(loadUrl(const KUrl&)));
_______________________________________________
rekonq mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/rekonq

Reply via email to