- in Legacy Mode fixed a small issue: the status bar icon for the Grid axis was not colored on app start
- added a new string to the translatable strings - fixed an error that sometime showed in Legacy Mode when moving the mouse outside canvas - reactivated the shortcut key 'S' in TCL Shell, to close the shell dock when it was open (of course the focus has to be not on the command line)
This commit is contained in:
@@ -3757,14 +3757,18 @@ class _BrowserTextEdit(QTextEdit):
|
||||
# Copy Text
|
||||
elif key == QtCore.Qt.Key_C:
|
||||
self.copy_text()
|
||||
# Copy Text
|
||||
# Save Log
|
||||
elif key == QtCore.Qt.Key_S:
|
||||
if self.app:
|
||||
self.save_log(app=self.app)
|
||||
|
||||
elif modifiers == QtCore.Qt.NoModifier:
|
||||
# Clear all
|
||||
if key == QtCore.Qt.Key_Delete:
|
||||
self.clear()
|
||||
# Shell toggle
|
||||
if key == QtCore.Qt.Key_S:
|
||||
self.app.ui.toggle_shell_ui()
|
||||
|
||||
def copy_text(self):
|
||||
tcursor = self.textCursor()
|
||||
|
||||
Reference in New Issue
Block a user