1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-03-08 09:47:48 +01:00

fix(monaco widget): reset current_file

This commit is contained in:
2026-01-07 14:04:02 +01:00
committed by Klaus Wakonig
parent dd7a5e11df
commit f121d09baa

View File

@@ -110,9 +110,12 @@ class MonacoWidget(BECWidget, QWidget):
file_name (str): Set the file name
reset (bool): If True, reset the original content to the new text.
"""
self._current_file = file_name if file_name else self._current_file
if reset:
self._current_file = file_name
self._original_content = text
else:
self._current_file = file_name if file_name else self._current_file
self.editor.set_text(text, uri=file_name)
def get_text(self) -> str: