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

ctrl-mouse down on Halo Components giving full Halo on Galyleo #202

Open
rickmcgeer opened this issue Dec 11, 2024 · 2 comments
Open

ctrl-mouse down on Halo Components giving full Halo on Galyleo #202

rickmcgeer opened this issue Dec 11, 2024 · 2 comments
Assignees

Comments

@rickmcgeer
Copy link
Contributor

ctrl-click on a Morph in Galyleo gives this:
image
Whereas it should show this:
image
Since these are the only operations supported by Galyleo

@rickmcgeer
Copy link
Contributor Author

Fixed by adding

const submorphsToDrop = ['grab', 'copy', 'inspect', 'edit', 'component', 'responsive'];
    halo.submorphs.forEach(sm => {
      if (submorphsToDrop.indexOf(sm.name) >= 0) {
        sm.remove();
      }
    });

To GalyleoStudioWorld.showHaloFor. See

$world.execCommand("open browser", {moduleName: "studio/ui.cp.js", packageName: "engageLively--galyleo-dashboard", codeEntity: [{"name":"GalyleoStudioWorld","type":"class-decl"},{"name":"showHaloFor","type":"class-instance-method"}]});

@rickmcgeer
Copy link
Contributor Author

Request review from @merryman

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