← Back to team overview

openshot.code team mailing list archive

[Branch ~openshot.code/openshot/main] Rev 506: Minor change, fixed a couple of erroneous comments.

 

------------------------------------------------------------
revno: 506
committer: Andy Finch <we.rocked.in79@xxxxxxxxx>
branch nick: openshot
timestamp: Thu 2011-08-18 21:34:43 +0100
message:
  Minor change, fixed a couple of erroneous comments.
modified:
  openshot/windows/MainGTK.py


--
lp:openshot
https://code.launchpad.net/~openshot.code/openshot/main

Your team OpenShot Code is subscribed to branch lp:openshot.
To unsubscribe from this branch go to https://code.launchpad.net/~openshot.code/openshot/main/+edit-subscription
=== modified file 'openshot/windows/MainGTK.py'
--- openshot/windows/MainGTK.py	2011-08-17 19:45:07 +0000
+++ openshot/windows/MainGTK.py	2011-08-18 20:34:43 +0000
@@ -2683,7 +2683,7 @@
 		# get correct gettext method
 		_ = self._
 		
-		# remove this track from it's parent sequence
+		# Add track
 		self.project.sequences[0].AddTrack(_("Track %s") % str(len(self.project.sequences[0].tracks) + 1), position="above", existing_track=self.selected_track)
 		
 		# refresh the interface
@@ -2696,7 +2696,7 @@
 		# get correct gettext method
 		_ = self._
 		
-		# remove this track from it's parent sequence
+		# Add Track
 		self.project.sequences[0].AddTrack(_("Track %s") % str(len(self.project.sequences[0].tracks) + 1), position="below", existing_track=self.selected_track)
 		
 		# refresh the interface
@@ -4015,8 +4015,8 @@
 		mnuFileProperties.connect('activate', self.on_FileProperties_activate)
 		
 		# Menu Composition
-		
 		if name == "treeFiles":
+			
 			# Create Folder
 			self.mnuTree.add(mnuCreateFolder)
 			
@@ -4112,6 +4112,7 @@
 		self.mnuTree.show_all()
 		self.mnuTree.popup( None, None, None, event.button, event.time)
 		
+	
 		
 	def on_mnuAddToTimeline_activate(self, event, *args):
 		""" Show the Add to Timeline dialog, with all selected files added to the dialog. """