From 3c97670a8847f56518095dde1f7b0a2b68cc8421 Mon Sep 17 00:00:00 2001 From: "Maciej S. Szmigiero" Date: Sat, 28 Sep 2019 00:37:19 +0200 Subject: Emit passShowHandlerFinished signal in MainWindow::passShowHandler() Commit 3cb140ca697367 ("Trying to use QtPass as process handler and connector for Pass") removed a DisplayInTextBrowser() call from MainWindow::passShowHandler() and added a similar QtPass::showInTextBrowser() function that is invoked by QtPass::passShowHandlerFinished() slot. This slot is in turn connected to MainWindow::passShowHandlerFinished signal which wasn't emitted anywhere in the code. Emit it where the old DisplayInTextBrowser() call was so password entry non-template details are actually displayed upon selecting it in the main QtPass window. --- src/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index cd21505f..1360b6be 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -406,6 +406,7 @@ void MainWindow::passShowHandler(const QString &p_output) { clearPanelTimer.start(); } + emit passShowHandlerFinished(output); setUiElementsEnabled(true); } -- cgit v1.2.3