ProcessManager: Move the memory stats widget under "Graphs" instead.

Making space for some new thingy under the process table view.
This commit is contained in:
Andreas Kling 2019-07-27 08:43:32 +02:00
parent cd3463d2e3
commit 185ba4dc3f
Notes: sideshowbarker 2024-07-19 13:02:37 +09:00

View File

@ -71,7 +71,7 @@ int main(int argc, char** argv)
auto* toolbar = new GToolBar(process_table_container);
toolbar->set_has_frame(false);
auto* process_table_view = new ProcessTableView(*cpu_graph, process_table_container);
auto* memory_stats_widget = new MemoryStatsWidget(*memory_graph, process_table_container);
auto* memory_stats_widget = new MemoryStatsWidget(*memory_graph, graphs_container);
auto* refresh_timer = new CTimer(1000, [&] {
process_table_view->refresh();