Skip to content

Commit

Permalink
Merge pull request #80 from mika-f/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mika-f authored Dec 17, 2023
2 parents 0cbbe64 + 151837f commit 16c040a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ body:
- 2.12.0
- 2.12.1
- 3.0.0-alpha.1
- 3.0.0-alpha.2
- 3.0.0-alpha.3
validations:
required: true
- type: dropdown
Expand Down
4 changes: 2 additions & 2 deletions src/addon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Natsuneko",
"description": "Blender add-on for import some files from drag-and-drop",
"blender": (3, 1, 0),
"version": (2, 13, 0),
"version": (2, 14, 0),
"location": "Drag and Drop Support",
"doc_url": "https://docs.natsuneko.com/en-us/drag-and-drop-support/",
"tracker_url": "https://github.com/mika-f/blender-drag-and-drop/issues",
Expand All @@ -32,7 +32,7 @@
from . import operator
from . import preferences

import bpy # nopep8
import bpy # nopep8


classes: list[type] = [operator.DropEventListener, preferences.DragAndDropPreferences]
Expand Down
2 changes: 1 addition & 1 deletion src/dll/extern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ extern "C" bool View3DImaEmptyDropPollHookCallback(bContext* c, wmDrag* drag, wm
}
else
{
if (IsEventAlreadyTriggered(event))
if (IsEventAlreadyTriggered(drag))
return false;
}

Expand Down

0 comments on commit 16c040a

Please sign in to comment.