mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
SystemMonitor: Put the "Hardware" tabs at the end of the list
This commit is contained in:
parent
4eb198baf3
commit
b36968c442
Notes:
sideshowbarker
2024-07-18 05:32:10 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/b36968c442c
1 changed files with 3 additions and 3 deletions
|
@ -194,12 +194,12 @@ int main(int argc, char** argv)
|
|||
auto storage_widget = build_storage_widget();
|
||||
tabwidget.add_widget("Storage", storage_widget);
|
||||
|
||||
auto hardware_widget = build_hardware_tab();
|
||||
tabwidget.add_widget("Hardware", hardware_widget);
|
||||
|
||||
auto network_stats_widget = NetworkStatisticsWidget::construct();
|
||||
tabwidget.add_widget("Network", network_stats_widget);
|
||||
|
||||
auto hardware_widget = build_hardware_tab();
|
||||
tabwidget.add_widget("Hardware", hardware_widget);
|
||||
|
||||
process_table_container.set_layout<GUI::VerticalBoxLayout>();
|
||||
process_table_container.layout()->set_margins(4);
|
||||
process_table_container.layout()->set_spacing(0);
|
||||
|
|
Loading…
Reference in a new issue