1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

Fixed visibility of navigationbar when app. is fullscreen.

This commit is contained in:
S. Razi Alavizadeh 2012-08-21 00:10:38 +04:30
parent c0b04f660e
commit 551498fa06
2 changed files with 3 additions and 2 deletions

View File

@ -36,6 +36,8 @@
#include <QHostInfo>
#include <QWebFrame>
bool TabbedWebView::m_navigationVisible = false;
TabbedWebView::TabbedWebView(QupZilla* mainClass, WebTab* webTab)
: WebView(webTab)
, p_QupZilla(mainClass)
@ -43,7 +45,6 @@ TabbedWebView::TabbedWebView(QupZilla* mainClass, WebTab* webTab)
, m_webTab(webTab)
, m_menu(new Menu(this))
, m_mouseTrack(false)
, m_navigationVisible(false)
, m_hasRss(false)
, m_rssChecked(false)
{

View File

@ -98,7 +98,7 @@ private:
Menu* m_menu;
bool m_mouseTrack;
bool m_navigationVisible;
static bool m_navigationVisible;
bool m_hasRss;
bool m_rssChecked;