diff --git a/spanish_trainer.db b/spanish_trainer.db index 0682e48..7dc33ea 100644 Binary files a/spanish_trainer.db and b/spanish_trainer.db differ diff --git a/tabs/sandbox_tab.py b/tabs/sandbox_tab.py index f2d620d..393d526 100644 --- a/tabs/sandbox_tab.py +++ b/tabs/sandbox_tab.py @@ -171,7 +171,7 @@ class SandboxTab(QWidget): dlg = TextEditorDialog("Edit Grammar / Core Notes Block", self.current_notes_content, self) if dlg.exec(): self.current_notes_content = dlg.get_text() - print(f"[DEBUG DIALOG CLOSE] Notes Block updated in memory: {self.current_notes_content}") + # print(f"[DEBUG DIALOG CLOSE] Notes Block updated in memory: {self.current_notes_content}") @pyqtSlot() @@ -179,7 +179,7 @@ class SandboxTab(QWidget): dlg = TextEditorDialog("Edit Anki Specialized Meta Field", self.current_anki_notes_content, self) if dlg.exec(): self.current_anki_notes_content = dlg.get_text() - print(f"[DEBUG DIALOG CLOSE] Anki Notes Block updated in memory: {self.current_anki_notes_content}") + #print(f"[DEBUG DIALOG CLOSE] Anki Notes Block updated in memory: {self.current_anki_notes_content}") def clear_form_fields(self): self.txt_english.blockSignals(True)