From 4901c7b320809d69f493c39be8c3f529e8b26710 Mon Sep 17 00:00:00 2001 From: Dobin Date: Sun, 14 Apr 2024 18:27:35 +0100 Subject: [PATCH] feature: show function size in dropdown --- app/templates/project.html | 6 +++--- app/views_project.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/templates/project.html b/app/templates/project.html index bb82234..8054dce 100644 --- a/app/templates/project.html +++ b/app/templates/project.html @@ -79,10 +79,10 @@ {% if exports != None %} {% endif %} diff --git a/app/views_project.py b/app/views_project.py index 415774e..f20557c 100644 --- a/app/views_project.py +++ b/app/views_project.py @@ -58,7 +58,7 @@ def project(name): is_64 = superpe.is_64() is_dotnet = superpe.is_dotnet() if superpe.is_dll(): - exports = superpe.get_exports() + exports = superpe.get_exports_full() project_dir = os.path.dirname(os.path.abspath(project.settings.inject_exe_out)) log_files = get_logfiles(project.settings.main_dir)