FontEditor: Mark pasted glyphs as modified

Co-authored-by: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com>
This commit is contained in:
Sam Atkins 2022-08-03 12:26:18 +01:00 committed by Sam Atkins
parent 5b7168b247
commit ca0e32e59f

View file

@ -960,6 +960,7 @@ void MainWidget::paste_glyphs()
: min(edited_font().max_glyph_width(), data[bytes_per_copied_glyph * glyph_count + i]);
memcpy(&rows[i * bytes_per_glyph], &data[i * bytes_per_copied_glyph], copyable_bytes_per_glyph);
memset(&widths[i], copyable_width, sizeof(u8));
m_glyph_map_widget->set_glyph_modified(selection.start() + i, true);
}
m_glyph_map_widget->set_selection(selection.start() + range_bound_glyph_count - 1, -range_bound_glyph_count + 1);