Skip to content

Commit

Permalink
Fix drag and drop for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dacoaster committed Feb 5, 2023
1 parent 9c4ca4e commit 644e140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/FileSystemUtility.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ module.exports.openConfigFile = async () => {
};

module.exports.dragItem = (event, data) => {
const iconPath = path.join(__dirname, "../public/drag-drop.png");
const iconPath = path.join(__static, "./drag-drop.png");
event.sender.startDrag({
file: data.filePath,
icon: iconPath,
Expand Down

0 comments on commit 644e140

Please sign in to comment.