diff --git a/src/apps/webpositive/LauncherWindow.cpp b/src/apps/webpositive/LauncherWindow.cpp index b1ba5135b0..09b484f0fc 100644 --- a/src/apps/webpositive/LauncherWindow.cpp +++ b/src/apps/webpositive/LauncherWindow.cpp @@ -411,6 +411,8 @@ void LauncherWindow::newTab(const BString& url, bool select) WebView* webView = new WebView("web_view"); m_tabView->AddTab(webView); m_tabView->TabAt(m_tabView->CountTabs() - 1)->SetLabel("New tab"); + // TODO: Remove when BTabView is fixed... + m_tabView->InvalidateLayout(); if (url.Length()) webView->loadRequest(url.String());