mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
feature: show function size in dropdown
This commit is contained in:
@@ -79,10 +79,10 @@
|
||||
{% if exports != None %}
|
||||
<select class="form-select" name="dllfunc" aria-label="DLLFUNC" onchange="this.form.submit()">
|
||||
{% for export in exports %}
|
||||
<option value="{{export}}"
|
||||
{% if export in project.settings.dllfunc %} selected {% endif %}
|
||||
<option value="{{export['name']}}"
|
||||
{% if export["name"] in project.settings.dllfunc %} selected {% endif %}
|
||||
>
|
||||
{{export}}</option>
|
||||
{{export['name']}} ({{export['size']}})</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user