勾选融合,输出设置固定
This commit is contained in:
parent
aee328fb82
commit
8b6949f087
|
@ -61,10 +61,10 @@
|
|||
/>
|
||||
<q-tab
|
||||
v-if="
|
||||
$store.state.advanced_debug ||
|
||||
$store.state.advanced_debug&&!$store.state.custom_defines.function_fusion ||
|
||||
/*!$store.state.custom_defines.is_custom_isv */ (!$store.state
|
||||
.custom_defines.function_output_board &&
|
||||
$store.state.isLedPlayer())
|
||||
$store.state.isLedPlayer()) &&!$store.state.custom_defines.function_fusion
|
||||
"
|
||||
name="graphics"
|
||||
no-caps
|
||||
|
@ -76,6 +76,18 @@
|
|||
"
|
||||
:disable="loading"
|
||||
/>
|
||||
<q-tab
|
||||
v-if="$store.state.custom_defines.function_fusion &&
|
||||
$store.state.isLedPlayer()"
|
||||
name="graphics"
|
||||
no-caps
|
||||
icon="img:new_icon/graphics_setting.png"
|
||||
:label="
|
||||
$t('output setting')
|
||||
"
|
||||
:disable="loading"
|
||||
/>
|
||||
|
||||
<q-tab
|
||||
name="timing_task"
|
||||
no-caps
|
||||
|
@ -96,6 +108,7 @@
|
|||
:label="$t('output board setting')"
|
||||
:disable="loading"
|
||||
/>
|
||||
|
||||
<q-tab
|
||||
name="other"
|
||||
no-caps
|
||||
|
@ -415,7 +428,7 @@
|
|||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
v-if="!$store.state.custom_defines.function_output_board"
|
||||
v-if="!$store.state.custom_defines.function_output_board ||$store.state.custom_defines.function_fusion"
|
||||
>
|
||||
<q-item-section avatar class="width_5_2_2"
|
||||
>{{ $t("output type") }}:</q-item-section
|
||||
|
@ -461,6 +474,7 @@
|
|||
<q-item
|
||||
v-if="
|
||||
!$store.state.custom_defines.function_output_board &&
|
||||
device_resolution_type.toUpperCase() == 'EDID'||$store.state.custom_defines.function_fusion&&
|
||||
device_resolution_type.toUpperCase() == 'EDID'
|
||||
"
|
||||
>
|
||||
|
@ -479,6 +493,7 @@
|
|||
<q-item
|
||||
v-if="
|
||||
!$store.state.custom_defines.function_output_board &&
|
||||
device_resolution_type.toUpperCase() == 'CVT'||$store.state.custom_defines.function_fusion&&
|
||||
device_resolution_type.toUpperCase() == 'CVT'
|
||||
"
|
||||
>
|
||||
|
@ -497,6 +512,7 @@
|
|||
<q-item
|
||||
v-if="
|
||||
!$store.state.custom_defines.function_output_board &&
|
||||
device_resolution_type.toUpperCase() == 'CUSTOM'||$store.state.custom_defines.function_fusion&&
|
||||
device_resolution_type.toUpperCase() == 'CUSTOM'
|
||||
"
|
||||
>
|
||||
|
@ -811,7 +827,7 @@
|
|||
class="_panel"
|
||||
v-if="
|
||||
$store.state.custom_defines.function_output_board ||
|
||||
$store.state.advanced_debug
|
||||
$store.state.advanced_debug ||$store.state.custom_defines.function_fusion
|
||||
"
|
||||
>
|
||||
<q-card class="fit">
|
||||
|
|
Loading…
Reference in New Issue