We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5551c commit f3d5fa2Copy full SHA for f3d5fa2
TODO
@@ -20,8 +20,6 @@ definition([
20
])
21
22
// project files
23
-// check palette copy to file works correctly
24
-// drag project error (check other files too)
25
26
/* https://unix.stackexchange.com/questions/585645/launch-an-application-by-a-double-click */
27
// provide a custom definition, but have a default
app/components/project/index.js
@@ -42,7 +42,8 @@ const Project = observer(() => {
42
accessor="projectPath"
43
onChange={(path) => {
44
if (path) {
45
- workspace.openProject();
+ // rAF avoids 'hover while not dragging' error
46
+ requestAnimationFrame(workspace.openProject);
47
}
48
}}
49
ext="flex.json"
0 commit comments