diff --git a/abogen/gui.py b/abogen/gui.py index 2aec2a0..6ebb5f9 100644 --- a/abogen/gui.py +++ b/abogen/gui.py @@ -577,7 +577,7 @@ class TextboxDialog(QDialog): def insert_chapter_marker(self): # Insert a fixed chapter marker without prompting cursor = self.text_edit.textCursor() - cursor.insertText("<>") + cursor.insertText("\n<>\n") self.text_edit.setTextCursor(cursor) self.update_char_count() self.text_edit.setFocus()