summaryrefslogtreecommitdiff
path: root/Userland/Applications/Calculator/CalculatorWidget.cpp
diff options
context:
space:
mode:
authorEdgar Araújo <edgararaj@gmail.com>2021-03-23 16:59:18 +0000
committerAndreas Kling <kling@serenityos.org>2021-03-29 09:10:23 +0200
commitca90a2029d36e118cf7e9fbc0bdf4eb08b1bde13 (patch)
treedc085b0a12470eab14851cbecb101576f1d3744f /Userland/Applications/Calculator/CalculatorWidget.cpp
parent532e0090fc84e134f50b5b2bef7ad9c1ce4653ff (diff)
downloadserenity-ca90a2029d36e118cf7e9fbc0bdf4eb08b1bde13.zip
Everywhere: Change font properties to be described in GML
Diffstat (limited to 'Userland/Applications/Calculator/CalculatorWidget.cpp')
-rw-r--r--Userland/Applications/Calculator/CalculatorWidget.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/Calculator/CalculatorWidget.cpp b/Userland/Applications/Calculator/CalculatorWidget.cpp
index f2ae66413a..24e1305770 100644
--- a/Userland/Applications/Calculator/CalculatorWidget.cpp
+++ b/Userland/Applications/Calculator/CalculatorWidget.cpp
@@ -42,7 +42,6 @@ CalculatorWidget::CalculatorWidget()
m_entry = *find_descendant_of_type_named<GUI::TextBox>("entry_textbox");
m_entry->set_relative_rect(5, 5, 244, 26);
m_entry->set_text_alignment(Gfx::TextAlignment::CenterRight);
- m_entry->set_font(Gfx::FontDatabase::default_fixed_width_font());
m_label = *find_descendant_of_type_named<GUI::Label>("label");