Skip to content
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

Newly installed scripts' icons don't show #1535

Closed
arantius opened this issue Apr 11, 2012 · 4 comments
Closed

Newly installed scripts' icons don't show #1535

arantius opened this issue Apr 11, 2012 · 4 comments
Milestone

Comments

@arantius
Copy link
Collaborator

The script.icon.fileURL is using the wrong path.

@niknah
Copy link

niknah commented Apr 22, 2012

In RemoteScript.prototype.install

If you move this line to the end of the function...

GM_config.install(this.script, aOldScript);

Then the icon appears on install. Looks like script._basedir has not been set when the icon is initialized.

@arantius
Copy link
Collaborator Author

So, this was originally at the bottom, but moved up intentionally: 3caceb2. Finding the underlying cause will make the fix (taking that issue into account as well) easier, though. Thanks.

@niknah
Copy link

niknah commented Apr 23, 2012

GM_config.install causes it to read the icon's filename which reads script._basedir,
But that is null cause the script hasn't been moved to it's directory.

@arantius
Copy link
Collaborator Author

GM_config.install causes it to read the icon's filename

Yes, indirectly, via the ._changed(...) observer/callback that the addons manager registers. So this only happens while the AOM is open, and sees the callback immediately, before RemoteScript.install() finishes setting the value correctly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants