summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-08-23 23:46:28 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-23 23:53:45 +0200
commit4eb1fd6ea3e3d459e3607be1029419ada9a940ba (patch)
tree29f689ceabf839bed63d879906abd50edff8fe4f
parent03c576acc54af4527887b8390e2a4dcb6c9b4dc9 (diff)
downloadserenity-4eb1fd6ea3e3d459e3607be1029419ada9a940ba.zip
SystemMonitor: Use bottom-side tabs for the per-process info tabs
Let's try this out and see how it feels! :^)
-rw-r--r--Applications/SystemMonitor/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/SystemMonitor/main.cpp b/Applications/SystemMonitor/main.cpp
index 0adbb22c9c..ef4d4e1fd1 100644
--- a/Applications/SystemMonitor/main.cpp
+++ b/Applications/SystemMonitor/main.cpp
@@ -304,6 +304,7 @@ int main(int argc, char** argv)
process_tab_unused_widget.set_visible(true);
auto& process_tab_widget = process_container_splitter.add<GUI::TabWidget>();
+ process_tab_widget.set_tab_position(GUI::TabWidget::TabPosition::Bottom);
process_tab_widget.set_visible(false);
auto& memory_map_widget = process_tab_widget.add_tab<ProcessMemoryMapWidget>("Memory map");