From 4b4cbcaeac87f48e3a65daac029940c17f9d6632 Mon Sep 17 00:00:00 2001 From: Jaidyn Ann <10477760+JadedCtrl@users.noreply.github.com> Date: Tue, 9 Aug 2022 11:39:20 -0500 Subject: [PATCH] Fix spawning of About window --- src/ReplicantView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ReplicantView.cpp b/src/ReplicantView.cpp index 8b64d3b..852ff94 100644 --- a/src/ReplicantView.cpp +++ b/src/ReplicantView.cpp @@ -189,6 +189,7 @@ ReplicantView::RightClickPopUp(BPopUpMenu* menu) BString aboutLabel = "About %replicant" B_UTF8_ELLIPSIS; aboutLabel.ReplaceAll("%replicant", Name()); BMenuItem* aboutItem = new BMenuItem(aboutLabel, new BMessage(B_ABOUT_REQUESTED)); + aboutItem->SetTarget(this); menu->AddItem(aboutItem); if (fReplicated) {