diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp index acd3b0af44d..7e8080d6c84 100644 --- a/Userland/Applications/FontEditor/FontEditor.cpp +++ b/Userland/Applications/FontEditor/FontEditor.cpp @@ -327,7 +327,6 @@ FontEditorWidget::FontEditorWidget(const String& path, RefPtr&& else m_glyph_editor_widget->set_mode(GlyphEditorWidget::Paint); }; - move_glyph_button.set_checkable(true); move_glyph_button.set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/selection-move.png").release_value_but_fixme_should_propagate_errors()); GUI::Clipboard::the().on_change = [&](const String& data_type) { diff --git a/Userland/Applications/FontEditor/FontEditorWindow.gml b/Userland/Applications/FontEditor/FontEditorWindow.gml index dad4c4c5a08..10f94f23e30 100644 --- a/Userland/Applications/FontEditor/FontEditorWindow.gml +++ b/Userland/Applications/FontEditor/FontEditorWindow.gml @@ -46,7 +46,7 @@ @GUI::CheckBox { name: "glyph_editor_present_checkbox" - text: "Show" + text: "Present" } @GUI::Button { @@ -54,6 +54,7 @@ fixed_width: 22 tooltip: "Move Glyph" button_style: "Coolbar" + checkable: true } } }