From 488f22941bcc65ac5e89299bab441dd3eb5258a1 Mon Sep 17 00:00:00 2001 From: Liav A Date: Fri, 12 Aug 2022 09:31:22 +0300 Subject: [PATCH] SystemMonitor: Remove GML references to the deleted Hardware tab --- Base/usr/share/man/man5/GML-Syntax.md | 4 --- .../SystemMonitor/SystemMonitor.gml | 31 ------------------- 2 files changed, 35 deletions(-) diff --git a/Base/usr/share/man/man5/GML-Syntax.md b/Base/usr/share/man/man5/GML-Syntax.md index e1241f5fad..533318bcac 100644 --- a/Base/usr/share/man/man5/GML-Syntax.md +++ b/Base/usr/share/man/man5/GML-Syntax.md @@ -221,10 +221,6 @@ GML files can be found in the SerenityOS source tree with the `*.gml` extension. title: "Network" name: "network" } - - @SystemMonitor::HardwareTabWidget { - // snip - } } } diff --git a/Userland/Applications/SystemMonitor/SystemMonitor.gml b/Userland/Applications/SystemMonitor/SystemMonitor.gml index 99ed6dabe8..cac1bb2b84 100644 --- a/Userland/Applications/SystemMonitor/SystemMonitor.gml +++ b/Userland/Applications/SystemMonitor/SystemMonitor.gml @@ -81,37 +81,6 @@ title: "Network" name: "network" } - - @SystemMonitor::HardwareTabWidget { - title: "Hardware" - name: "hardware" - layout: @GUI::VerticalBoxLayout { - margins: [4] - } - - @GUI::GroupBox { - title: "CPUs" - fixed_height: 128 - layout: @GUI::VerticalBoxLayout { - margins: [6] - } - - @GUI::TableView { - name: "cpus_table" - } - } - - @GUI::GroupBox { - title: "PCI devices" - layout: @GUI::VerticalBoxLayout { - margins: [6] - } - - @GUI::TableView { - name: "pci_dev_table" - } - } - } } }