Skip to content

Commit

Permalink
🔧 Lowered zoom_min default
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisFederico committed Jan 9, 2022
1 parent 07d9c80 commit af83b86
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyflow/graphics/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from PyQt5.QtWidgets import QGraphicsView, QMenu
from PyQt5.sip import isdeleted


from pyflow.scene import Scene
from pyflow.core.socket import Socket
from pyflow.core.edge import Edge
Expand Down Expand Up @@ -46,7 +45,7 @@ def __init__(
scene: Scene,
parent=None,
zoom_step: float = 1.25,
zoom_min: float = 0.2,
zoom_min: float = 0.05,
zoom_max: float = 5,
):
super().__init__(parent=parent)
Expand Down

0 comments on commit af83b86

Please sign in to comment.