summaryrefslogtreecommitdiff
path: root/Userland/Applications/FontEditor
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-11-20 00:42:35 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-20 12:56:35 +0100
commit197b5f7c4ae231558fe22712d366dcd00a293c78 (patch)
tree353d0f15c20f6d202624aa4c5ee0d01d15c4453f /Userland/Applications/FontEditor
parenta8c95097b5a11df3c310cb56f46407b5ad5a347b (diff)
downloadserenity-197b5f7c4ae231558fe22712d366dcd00a293c78.zip
FontEditor: More reasonable labels, move property to GML
Diffstat (limited to 'Userland/Applications/FontEditor')
-rw-r--r--Userland/Applications/FontEditor/FontEditor.cpp1
-rw-r--r--Userland/Applications/FontEditor/FontEditorWindow.gml3
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp
index acd3b0af44..7e8080d6c8 100644
--- a/Userland/Applications/FontEditor/FontEditor.cpp
+++ b/Userland/Applications/FontEditor/FontEditor.cpp
@@ -327,7 +327,6 @@ FontEditorWidget::FontEditorWidget(const String& path, RefPtr<Gfx::BitmapFont>&&
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 dad4c4c5a0..10f94f23e3 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
}
}
}