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

Issues with Native Developer Rig #9

Open
maael opened this issue Jan 30, 2020 · 0 comments
Open

Issues with Native Developer Rig #9

maael opened this issue Jan 30, 2020 · 0 comments

Comments

@maael
Copy link

maael commented Jan 30, 2020

I'm not sure if this is in the right place, as it seems to be more an issue to do with the native Developer Rig than anything, but the native Developer Rig doesn't seem to be on GitHub, so I'm posting this here. Let me know if there's a better place for it. I downloaded the native Developer Rig, and created a new project with this boilerplate. Upon running the frontend and backend, and creating a new video component extension view, I could not see the extension, I saw the below.

Screenshot 2020-01-30 at 09 29 02

I then opened it in a browser, and upon investigation, found that the extension was rendering, but an element above it was collapsed to be 2px by 2px, so everything contained, including the extension wasn't visible.

Screenshot 2020-01-30 at 09 26 41

I found to fix this I had to change some CSS manually on this element.

Screenshot 2020-01-30 at 09 26 10

I had to change the CSS to the follow (the top and bottom are most likely resolution dependent I imagine, more a quick fix than anything just to get something visible and over the video portion of the player):

element.style {
    border: 1px solid rgb(125, 85, 199);
    left: 0px;
    position: absolute;
    top: 100px;
    /* height: 0px; */
    /* width: 0px; */
    bottom: 80px;
    right: 0;
}

Once I did this, the extension was visible as expected:

Screenshot 2020-01-30 at 09 28 46

However this isn't possible to do so that it shows up in the Developer Rig.

Am I doing something wrong, is there any extra configuration that needs to be done? Or is this an issue with the Developer Rig? If it's an issue with the rig, do you know how to escalate it so it can be fixed?

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

1 participant