From 1ec6dee4295c9074186a288a5d80d2c1d27292d8 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Mon, 28 Sep 2020 14:33:37 -0400 Subject: [PATCH] feat: address bar, tabs support and nav buttons --- ui/app/AppLayouts/Browser/BrowserLayout.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/app/AppLayouts/Browser/BrowserLayout.qml b/ui/app/AppLayouts/Browser/BrowserLayout.qml index 4501baf306..4bb6ffc60b 100644 --- a/ui/app/AppLayouts/Browser/BrowserLayout.qml +++ b/ui/app/AppLayouts/Browser/BrowserLayout.qml @@ -26,6 +26,12 @@ Rectangle { onClosing: destroy() } + property Item currentWebView: tabs.currentIndex < tabs.count ? tabs.getTab(tabs.currentIndex).item : null + + property Component browserDialogComponent: BrowserDialog { + onClosing: destroy() + } + Layout.fillHeight: true Layout.fillWidth: true