Skip to content

Commit

Permalink
isEngineWaitingLongの初期値がtrueになっていた (#1160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Jan 31, 2023
1 parent 375e7ee commit 81c2ddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/EditorHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ export default defineComponent({
return lastEngineState; // FIXME: 暫定的に1つのエンジンの状態を返す
});
const isEngineWaitingLong = ref<boolean>(true);
const isEngineWaitingLong = ref<boolean>(false);
let engineTimer: number | undefined = undefined;
watch(allEngineState, (newEngineState) => {
if (engineTimer !== undefined) {
Expand Down

0 comments on commit 81c2ddf

Please sign in to comment.