@@ -54,7 +54,7 @@ def handle(self, log_record):
54
54
# EditorWidget Class Definition
55
55
class EditorWidget (QtGui .QWidget ):
56
56
"""
57
- Main class of the PySequence Editor
57
+ Main class of the sequence editor
58
58
"""
59
59
60
60
print_signal = QtCore .pyqtSignal (unicode )
@@ -124,7 +124,7 @@ def dropEvent(self, event):
124
124
self .ui .block_list .expandToDepth (0 )
125
125
126
126
# Sequence initialization
127
- self .current_sequence = XMLSequence ("New Sequence " )
127
+ self .current_sequence = XMLSequence ("New sequence " )
128
128
129
129
# Signals connection
130
130
self .ui .open_button .clicked .connect (self .on_open )
@@ -152,7 +152,7 @@ def dropEvent(self, event):
152
152
self .update ()
153
153
154
154
# Logging
155
- self .log (u'PySequence Editor Initialized .' )
155
+ self .log (u'Sequence editor initialized .' )
156
156
157
157
158
158
self .signal_handler = SignalHandler (logging .DEBUG )
@@ -249,11 +249,11 @@ def on_new(self):
249
249
# Create new sequence
250
250
self .file_path = None
251
251
self .set_changed (False )
252
- self .current_sequence = XMLSequence ("New Sequence " , depth = 0 ,
252
+ self .current_sequence = XMLSequence ("New sequence " , depth = 0 ,
253
253
level = 0 , execution = False )
254
254
# Update
255
255
self .update ()
256
- self .log ('NEW : New Sequence ' )
256
+ self .log ('NEW : New sequence ' )
257
257
258
258
def on_open (self ):
259
259
"""
@@ -492,7 +492,7 @@ def set_changed(self, value, global_change=False):
492
492
name = os .path .basename (self .file_path )
493
493
else :
494
494
name = self .current_sequence .sequence_id
495
- title = 'PySequence Editor - '
495
+ title = 'Sequence editor - '
496
496
# Set the title format
497
497
if self .changed :
498
498
title += '*' + name + '*'
0 commit comments