mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
SystemMonitor: Make the memory map the "default view"
The memory map is a lot more interesting than the "open files" view :^)
This commit is contained in:
parent
26c5d26045
commit
39a6d29b39
1 changed files with 3 additions and 3 deletions
|
@ -166,12 +166,12 @@ int main(int argc, char** argv)
|
|||
|
||||
auto process_tab_widget = GTabWidget::construct(process_container_splitter);
|
||||
|
||||
auto open_files_widget = ProcessFileDescriptorMapWidget::construct(nullptr);
|
||||
process_tab_widget->add_widget("Open files", open_files_widget);
|
||||
|
||||
auto memory_map_widget = ProcessMemoryMapWidget::construct(nullptr);
|
||||
process_tab_widget->add_widget("Memory map", memory_map_widget);
|
||||
|
||||
auto open_files_widget = ProcessFileDescriptorMapWidget::construct(nullptr);
|
||||
process_tab_widget->add_widget("Open files", open_files_widget);
|
||||
|
||||
auto stacks_widget = ProcessStacksWidget::construct(nullptr);
|
||||
process_tab_widget->add_widget("Stacks", stacks_widget);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue