diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-08-08 19:50:33 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-08 19:50:33 +0200 |
commit | eb3c19773e7865952d5ad0ba01f3481f95c0513f (patch) | |
tree | ff2e6a7fc86d9b1f72c892648a82d515bc3e6556 /Applications | |
parent | 865a1b913ccbb3ef9cc23f78491c8e036d3ddbba (diff) | |
download | serenity-eb3c19773e7865952d5ad0ba01f3481f95c0513f.zip |
ProcessManager: Tweak memory stats widget layout to fit more text
After a while, the kmalloc/kfree counts got too wide for the label.
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/ProcessManager/MemoryStatsWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<GBoxLayout>(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); |