diff options
author | Burt P <pburt0@gmail.com> | 2017-08-15 09:42:55 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-08-21 05:49:52 -0700 |
commit | 9d0aca1344ab586633711ce4b04b36c96dfd92ff (patch) | |
tree | d1f11221c06311c394b5e6469f9ec78a218dd11f /modules | |
parent | 7aad6b5f27cc9fe5493df002ffe2cd1d2403f6fe (diff) |
Remove duplicate group headers in computer summary
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/computer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/computer.c b/modules/computer.c index 76404d59..7921dd28 100644 --- a/modules/computer.c +++ b/modules/computer.c @@ -489,9 +489,9 @@ gchar *callback_summary(void) idle_free(computer_get_alsacards(computer))); info_add_computed_group(info, _("Input Devices"), idle_free(module_call_method("devices::getInputDevices"))); - info_add_computed_group(info, _("Printers"), + info_add_computed_group(info, NULL, /* getPrinters provides group headers */ idle_free(module_call_method("devices::getPrinters"))); - info_add_computed_group(info, _("Storage"), + info_add_computed_group(info, NULL, /* getStorageDevices provides group headers */ idle_free(module_call_method("devices::getStorageDevices"))); return info_flatten(info); |