diff --git a/Base/usr/share/man/man5/GML-Syntax.md b/Base/usr/share/man/man5/GML-Syntax.md index e1241f5fad4..533318bcacc 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 99ed6dabe88..cac1bb2b848 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" - } - } - } } }