From 9c9915ee803f306acb2a4cb56bbbdaf1876bbec4 Mon Sep 17 00:00:00 2001 From: Nav Date: Wed, 6 Oct 2021 21:46:22 +0100 Subject: [PATCH] Fixed About window positioning bug --- src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index e4bdaec8..ccb736d9 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -209,7 +209,7 @@ void InsightWindow::openGettingStartedUrl() { void InsightWindow::openAboutWindow() { if (this->aboutWindowWidget == nullptr) { - this->aboutWindowWidget = new AboutWindow(this->windowContainer); + this->aboutWindowWidget = new AboutWindow(this); } this->aboutWindowWidget->show();