From 33361275fe719bdc7847516a0d574d29184763f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Fri, 11 Jul 2025 11:00:45 +0300 Subject: [PATCH] Add new lines around chapter markers --- abogen/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()