[gnome-control-center/wip/kate/empty-string-as-vm] firmware-security: Hide the panel when chassis type is an empty string
- From: Kate Hsuan <khsuan src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center/wip/kate/empty-string-as-vm] firmware-security: Hide the panel when chassis type is an empty string
- Date: Wed, 24 Aug 2022 08:50:11 +0000 (UTC)
commit ac625ec7b8fa1ac0995d50feb0ca1fef75242557
Author: Kate Hsuan <hpa redhat com>
Date: Wed Aug 24 14:34:50 2022 +0800
firmware-security: Hide the panel when chassis type is an empty string
When requesting the chassis type through systemd-hostnamed, it sometimes
returns an empty string "" not the "vm" to present the virtual machine.
Since this panel will not be shown in the VM environment, if systemd-hostnamed
returns an empty string or "vm", the panel will be hidden.
Signed-off-by: Kate Hsuan <hpa redhat com>
panels/firmware-security/cc-firmware-security-panel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/panels/firmware-security/cc-firmware-security-panel.c
b/panels/firmware-security/cc-firmware-security-panel.c
index 28e7912d0..ae483af05 100644
--- a/panels/firmware-security/cc-firmware-security-panel.c
+++ b/panels/firmware-security/cc-firmware-security-panel.c
@@ -567,7 +567,7 @@ update_panel_visibility (const gchar *chassis_type)
gboolean visible = TRUE;
/* there's no point showing this */
- if (g_strcmp0 (chassis_type, "vm") == 0)
+ if (g_strcmp0 (chassis_type, "vm") == 0 || g_strcmp0 (chassis_type, "") == 0)
visible = FALSE;
application = CC_APPLICATION (g_application_get_default ());
cc_shell_model_set_panel_visibility (cc_application_get_model (application),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]