Skip to content

Commit

Permalink
FontEditor: Update the glyph map when changing a glyph's width.
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Apr 10, 2019
1 parent f5c295e commit b980c32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions Applications/FontEditor/FontEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ FontEditorWidget::FontEditorWidget(const String& path, RetainPtr<Font>&& edited_
width_spinbox->on_change = [this, update_demo] (int value) {
m_edited_font->set_glyph_width(m_glyph_map_widget->selected_glyph(), value);
m_glyph_editor_widget->update();
m_glyph_map_widget->update_glyph(m_glyph_map_widget->selected_glyph());
update_demo();
};

Expand Down
6 changes: 2 additions & 4 deletions Applications/FontEditor/GlyphMapWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ Rect GlyphMapWidget::get_outer_rect(byte glyph) const
{
int row = glyph / columns();
int column = glyph % columns();
return {
return Rect {
column * (font().max_glyph_width() + m_horizontal_spacing) + 1,
row * (font().glyph_height() + m_vertical_spacing) + 1,
font().max_glyph_width() + m_horizontal_spacing,
font().glyph_height() + m_horizontal_spacing
};
}.translated(frame_thickness(), frame_thickness());
}

void GlyphMapWidget::update_glyph(byte glyph)
Expand All @@ -62,8 +62,6 @@ void GlyphMapWidget::paint_event(GPaintEvent& event)
painter.set_font(font());
painter.fill_rect(frame_inner_rect(), Color::White);

painter.translate(frame_thickness(), frame_thickness());

byte glyph = 0;

for (int row = 0; row < rows(); ++row) {
Expand Down

0 comments on commit b980c32

Please sign in to comment.