mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
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:
parent
cd3463d2e3
commit
185ba4dc3f
Notes:
sideshowbarker
2024-07-19 13:02:37 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/185ba4dc3fe
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ int main(int argc, char** argv)
|
||||||
auto* toolbar = new GToolBar(process_table_container);
|
auto* toolbar = new GToolBar(process_table_container);
|
||||||
toolbar->set_has_frame(false);
|
toolbar->set_has_frame(false);
|
||||||
auto* process_table_view = new ProcessTableView(*cpu_graph, process_table_container);
|
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, [&] {
|
auto* refresh_timer = new CTimer(1000, [&] {
|
||||||
process_table_view->refresh();
|
process_table_view->refresh();
|
||||||
|
|
Loading…
Reference in a new issue