Skip to content
5 changes: 4 additions & 1 deletion src/renderer/components/AboutTabModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default {
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
z-index: 10000;
}
.backdrop {
position: absolute;
Expand All @@ -147,6 +147,9 @@ export default {
background: var(--second-bg-color);
box-shadow: 2px 2px 20px 1px var(--second-bg-color);
overflow-x: 10px;
width: 600px;
max-height: 80vh;
overflow-y: auto;
}
.item {
margin: 5px 0;
Expand Down
19 changes: 0 additions & 19 deletions src/renderer/components/AnalysisContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,23 +93,6 @@
/>
</div>
</div>
<JumpButtons
v-if="QuickTourIndex !== 14"
@flip-board="$emit('flip-board', 0)"
@move-to-start="$emit('move-to-start', 0)"
@move-back-one="$emit('move-back-one', 0)"
@move-forward-one="$emit('move-forward-one', 0)"
@move-to-end="$emit('move-to-end', 0)"
/>
<JumpButtons
v-else
id="JumpButtons-qt"
@flip-board="$emit('flip-board', 0)"
@move-to-start="$emit('move-to-start', 0)"
@move-back-one="$emit('move-back-one', 0)"
@move-forward-one="$emit('move-forward-one', 0)"
@move-to-end="$emit('move-to-end', 0)"
/>
<EngineConsole
v-if="QuickTourIndex !== 16"
ref="console"
Expand Down Expand Up @@ -137,7 +120,6 @@
import { mapGetters } from 'vuex'

// import AnalysisEvalRow from './AnalysisEvalRow'
import JumpButtons from './JumpButtons'
import EngineStats from './EngineStats'
import PVLines from './PVLines'
import EngineConsole from './EngineConsole'
Expand All @@ -150,7 +132,6 @@ export default {
name: 'AnalysisContainer',
components: {
// AnalysisEvalRow,
JumpButtons,
EngineStats,
PVLines,
EngineConsole,
Expand Down
Loading
Loading