|
@@ -661,7 +661,9 @@ class Vopen():
|
|
|
if self.success and wn and self.im:
|
|
|
xx ,yy = self.im.get_size()[:2]
|
|
|
if self.fname.startswith("cam_"):
|
|
|
- wn.blit(self.im, (int(self.x-xx/2), int(self.y)))
|
|
|
+
|
|
|
+
|
|
|
+ wn.blit(self.im, (int(self.x-xx/2), int(self.y-yy)))
|
|
|
else:
|
|
|
wn.blit(self.im, (int(self.x-xx/2), int(self.y-yy/2)))
|
|
|
|