From c8231649a027cd3623ac9996c253cfe56398c19a Mon Sep 17 00:00:00 2001 From: Dhruv Maroo Date: Sat, 22 Apr 2023 00:21:37 +0530 Subject: [PATCH] Use correct fucntion for the popup --- src/main/java/ghidrust/decompiler/RustDecPlugin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/ghidrust/decompiler/RustDecPlugin.java b/src/main/java/ghidrust/decompiler/RustDecPlugin.java index bdc53fc..18545de 100644 --- a/src/main/java/ghidrust/decompiler/RustDecPlugin.java +++ b/src/main/java/ghidrust/decompiler/RustDecPlugin.java @@ -65,9 +65,9 @@ public class RustDecPlugin extends Plugin { @Override public void actionPerformed(ActionContext context) { if (RustStdAnalyzer.isRustBinary(program)) { - Msg.info(this, "[+] Yes, this may be a Rust binary!"); + Msg.showInfo(this, null, "GhidRust", "[+] Yes, this may be a Rust binary!"); } else { - Msg.info(this, "[-] No, this may not be a Rust binary!"); + Msg.showInfo(this, null, "GhidRust", "[-] No, this may not be a Rust binary!"); } } };