From eb3c19773e7865952d5ad0ba01f3481f95c0513f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 8 Aug 2019 19:50:33 +0200 Subject: [PATCH] ProcessManager: Tweak memory stats widget layout to fit more text After a while, the kmalloc/kfree counts got too wide for the label. --- Applications/ProcessManager/MemoryStatsWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/ProcessManager/MemoryStatsWidget.cpp b/Applications/ProcessManager/MemoryStatsWidget.cpp index d11f601af5..6412dba161 100644 --- a/Applications/ProcessManager/MemoryStatsWidget.cpp +++ b/Applications/ProcessManager/MemoryStatsWidget.cpp @@ -26,7 +26,7 @@ MemoryStatsWidget::MemoryStatsWidget(GraphWidget& graph, GWidget* parent) auto* container = new GWidget(this); container->set_layout(make(Orientation::Horizontal)); container->set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed); - container->set_preferred_size(255, 12); + container->set_preferred_size(275, 12); auto* description_label = new GLabel(description, container); description_label->set_font(Font::default_bold_font()); description_label->set_text_alignment(TextAlignment::CenterLeft);