diff options
author | Burt P <pburt0@gmail.com> | 2019-07-03 18:01:27 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2019-07-04 22:40:34 -0700 |
commit | 37811a2157a962f15010c9f11bf0b708f6123cd8 (patch) | |
tree | c1cac4a5651d453ccf04eb61060430aa7c7eb1f4 /includes/report.h | |
parent | 26deb733649d4ff2bbdf6506d8ccd58c134d218b (diff) |
shell/report: icon cache using css
Only include one copy of each icon in the source, by using
css class rather than img with src for each instance.
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'includes/report.h')
-rw-r--r-- | includes/report.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/report.h b/includes/report.h index cd7034da..f2f279f6 100644 --- a/includes/report.h +++ b/includes/report.h @@ -63,7 +63,8 @@ struct _ReportContext { gboolean show_column_headers; guint columns, parent_columns; GHashTable *column_titles; - GHashTable *icons; + GHashTable *icon_refs; + GHashTable *icon_data; }; struct _ReportDialog { |