Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions material_maker/panels/graph_edit/graph_edit.gd
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,9 @@ func _gui_input(event) -> void:
accept_event()
lasso_points.append(get_local_mouse_position())
queue_redraw()
elif event is InputEventMagnifyGesture:
if OS.get_name() != "macOS":
do_zoom(event.factor)


func get_padded_node_rect(graph_node:GraphNode) -> Rect2:
Expand Down
Loading