FontEditor: More reasonable labels, move property to GML

This commit is contained in:
Ben Wiederhake 2021-11-20 00:42:35 +01:00 committed by Andreas Kling
parent a8c95097b5
commit 197b5f7c4a
Notes: sideshowbarker 2024-07-18 00:58:56 +09:00
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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
}
}
}