From d40073c927dfd32458529b12ffe9c60806f993d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20BERTHO?= Date: Sat, 1 Sep 2018 16:20:57 +0200 Subject: [PATCH] Fixed base url MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: RĂ©mi BERTHO --- SimplePanoramaViewer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimplePanoramaViewer b/SimplePanoramaViewer index e482bcb..6975d9d 100755 --- a/SimplePanoramaViewer +++ b/SimplePanoramaViewer @@ -36,7 +36,7 @@ except OSError as exception: html = html.replace("__IMG_PATH__", img) web = QWebEngineView() -web.setHtml(html,QUrl("file://" + exe_dir + "/index.html")) +web.setHtml(html,QUrl("file://" + exe_dir + "/")) web.setWindowTitle(img) web.showMaximized() web.show()