GTextEditor: Don't assert is_readonly() in did_change()

This callback will be invoked when calling set_text() to set the
initial contents of a GTextEditor, and that's okay.
This commit is contained in:
Andreas Kling 2019-11-30 19:11:31 +01:00
parent 6f70238a32
commit d27e5a77e7
Notes: sideshowbarker 2024-07-19 11:01:05 +09:00

View File

@ -1139,7 +1139,6 @@ void GTextEditor::leave_event(CEvent&)
void GTextEditor::did_change()
{
ASSERT(!is_readonly());
update_content_size();
recompute_all_visual_lines();
m_undo_action->set_enabled(can_undo());