← Back to team overview

openshot.code team mailing list archive

[Branch ~openshot.code/openshot/main] Rev 646: Applied a patch from 'madpentiste' that fixes an issue with the zoom out button. It was limited t...

 

------------------------------------------------------------
revno: 646
fixes bug: https://launchpad.net/bugs/933227
committer: Andy Finch <we.rocked.in79@xxxxxxxxx>
branch nick: openshot
timestamp: Thu 2012-03-22 20:58:02 +0000
message:
  Applied a patch from 'madpentiste' that fixes an issue with the zoom out button. It was limited to zooming out to 115 seconds - the patch enables it to go out to 200 seconds, which brings it into line with the zoom slider.
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	2012-03-22 20:45:42 +0000
+++ openshot/windows/MainGTK.py	2012-03-22 20:58:02 +0000
@@ -2382,13 +2382,13 @@
 		# zoom slower if too close
 		if zoom_slider > 11:
 			
-			# Move the zoom slider to the left
-			if zoom_slider + 5 < 115:
+			# Move the zoom slider to the right    
+			if zoom_slider + 5 < 200:
 				# add 5 units
 				self.hsZoom.set_value(zoom_slider + 5)
 			else:
-				# set to 0
-				self.hsZoom.set_value(115)
+				# set to 200 
+				self.hsZoom.set_value(200)
 		
 		elif zoom_slider < 4: