We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24c4dcd commit 82c0d9fCopy full SHA for 82c0d9f
src/window.py
@@ -261,6 +261,8 @@ def setup_ui(self):
261
border: 1px solid #4CAF50;
262
}
263
""")
264
+ # Connect textChanged signal
265
+ self.input_area.textChanged.connect(self.update_run_button)
266
input_layout.addWidget(self.input_area)
267
268
# Control buttons with modern styling
@@ -843,4 +845,4 @@ def handle_input_keypress(self, event):
843
845
return
844
846
847
# For all other keys, use default handling
- super(QTextEdit, self.input_area).keyPressEvent(event)
848
+ QTextEdit.keyPressEvent(self.input_area, event)
0 commit comments