Skip to content

Commit

Permalink
対応GPUを有する実機が存在しないため、ダミーコードで動作テスト
Browse files Browse the repository at this point in the history
  • Loading branch information
o108minmin committed Mar 14, 2022
1 parent 590e7f2 commit f3e9499
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/MenuBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ export default defineComponent({
const uiLocked = computed(() => store.getters.UI_LOCKED);
const menubarLocked = computed(() => store.getters.MENUBAR_LOCKED);
const projectName = computed(() => store.getters.PROJECT_NAME);
const useGpu = store.state.useGpu;
// const useGpu = store.state.useGpu;
// 実機で状態が確認できないため、ダミーコードを仕込む
const useGpu = true;
const isEdited = computed(() => store.getters.IS_EDITED);
const isFullscreen = computed(() => store.getters.IS_FULLSCREEN);
Expand Down

0 comments on commit f3e9499

Please sign in to comment.