- added some icons in the Code Editor
- replaced some icons in the app - in Code Editor, when changing text, the Save Code button will change color (text and icon) to red and after save it will revert the color to the default one - in Code Editor some methods rework
This commit is contained in:
@@ -1019,19 +1019,15 @@ class SolderPaste(AppTool):
|
||||
return
|
||||
|
||||
try:
|
||||
for line in lines:
|
||||
proc_line = str(line).strip('\n')
|
||||
self.text_editor_tab.code_editor.append(proc_line)
|
||||
# for line in lines:
|
||||
# proc_line = str(line).strip('\n')
|
||||
# self.text_editor_tab.code_editor.append(proc_line)
|
||||
self.text_editor_tab.load_text(lines, move_to_start=True)
|
||||
except Exception as e:
|
||||
log.debug('ToolSolderPaste.on_view_gcode() -->%s' % str(e))
|
||||
self.app.inform.emit('[ERROR] %s --> %s' % ('ToolSolderPaste.on_view_gcode()', str(e)))
|
||||
return
|
||||
|
||||
self.text_editor_tab.code_editor.moveCursor(QtGui.QTextCursor.Start)
|
||||
|
||||
self.text_editor_tab.handleTextChanged()
|
||||
# self.app.ui.show()
|
||||
|
||||
def on_save_gcode(self):
|
||||
"""
|
||||
Save solderpaste dispensing GCode to a file on HDD.
|
||||
|
||||
Reference in New Issue
Block a user