-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot change opened project when plugin enabled #8
Comments
Hey @mrbodich I’ll take a look when I get a chance. Something could have changed in Bracket’s API recently, and I haven’t updated this plugin in a while. |
Hey Javier! How are you? Did you have a chance to fix this trouble ;) |
@mrbodich Sorry for the delay on this. Unfortunately I can't update this repo or make new releases for the time being. However, the issue is coming from an error on my code, and it's very easy to fix. In this function located in the main file, you just need to always return a string. So something like this would work: function _filerErrors( message ) {
if ( message && typeof message == "string" && message.toString().indexOf( 'Br-Ps' ) !== -1 ) {
return message;
} else {
return '';
}
} |
Javier, THANK YOU! It works now! |
When brackets-to-photoshop is enabled I cannot change active project. Don't work changing project using button with dropdown list on the left section. Don't work even dragging folder to brackets icon (Mac). When disabling plugin everything works...
The text was updated successfully, but these errors were encountered: