diff options
author | Edgar Araújo <edgararaj@gmail.com> | 2021-03-23 16:59:18 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-29 09:10:23 +0200 |
commit | ca90a2029d36e118cf7e9fbc0bdf4eb08b1bde13 (patch) | |
tree | dc085b0a12470eab14851cbecb101576f1d3744f /Userland/Applications/Calculator/CalculatorWidget.cpp | |
parent | 532e0090fc84e134f50b5b2bef7ad9c1ce4653ff (diff) | |
download | serenity-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.cpp | 1 |
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"); |