mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-22 22:34:25 -07:00
also accept '=' in addition to '+'
This commit is contained in:
parent
e4e9c963d2
commit
7e32f2df20
1 changed files with 1 additions and 1 deletions
|
@ -380,7 +380,7 @@ def main(args, device_args):
|
||||||
elif key == ord('-'):
|
elif key == ord('-'):
|
||||||
zoom = zoom.prev()
|
zoom = zoom.prev()
|
||||||
pass
|
pass
|
||||||
elif key == ord('+'):
|
elif key == ord('=') or key == ord('+'):
|
||||||
zoom = zoom.next()
|
zoom = zoom.next()
|
||||||
try:
|
try:
|
||||||
io.process_messages(0.1)
|
io.process_messages(0.1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue