You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've checked if anyone else asked this question before by looking through the issue reports.
I have multiple items on my decks window to using multiple addons and was wondering if there was a way I could use to change in what place the heatmap appeared so that it becomes beneath something or higher than it
for reference here is the code that adds stuff in the other addon
def add_btn_js(
web_content: WebContent, context: object | None) -> None:
if not isinstance(context, DeckBrowser):
return
cwd = os.path.dirname(file)
path = os.path.join(cwd, "assets", "ui","Farm.gif")
base64_image = image_to_base64(path)
web_content.body += get_html(base64_image, "start_streak")
whenever I want to add another item I just add it before or after this however when I placed the heatmap addon inside the other addon project and imported it in it no matter on what line I import it is always on top is there a way to change it
thanks for your help in advance and I apologize for the weird question
The text was updated successfully, but these errors were encountered:
Checklist
Please replace the space inside the brackets with an x if the following items apply:
I have multiple items on my decks window to using multiple addons and was wondering if there was a way I could use to change in what place the heatmap appeared so that it becomes beneath something or higher than it
for reference here is the code that adds stuff in the other addon
def add_btn_js(
web_content: WebContent, context: object | None) -> None:
if not isinstance(context, DeckBrowser):
return
cwd = os.path.dirname(file)
path = os.path.join(cwd, "assets", "ui","Farm.gif")
base64_image = image_to_base64(path)
web_content.body += get_html(base64_image, "start_streak")
whenever I want to add another item I just add it before or after this however when I placed the heatmap addon inside the other addon project and imported it in it no matter on what line I import it is always on top is there a way to change it
thanks for your help in advance and I apologize for the weird question
The text was updated successfully, but these errors were encountered: