File tree Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import {computed} from 'vue'
3
3
import MatchStateToolbar from " @/components/MatchStateToolbar.vue" ;
4
4
import ExternalConnectionStatus from " @/components/ExternalConnectionStatus.vue" ;
5
5
import StoreUpdateCountStatus from " @/components/StoreUpdateCountStatus.vue" ;
6
+ import StatusMessageButton from " @/components/match/StatusMessageButton.vue" ;
6
7
import ManualControlView from " @/views/ManualControlView.vue" ;
7
8
import ProtocolList from " @/components/protocol/ProtocolList.vue" ;
8
9
import {useQuasar } from " quasar" ;
@@ -74,6 +75,7 @@ const dev = computed(() => {
74
75
<q-toggle dense flat round class =" q-mx-sm" @click =" toggleShortcuts" :model-value =" showShortcuts" color =" black" >
75
76
Show Shortcuts
76
77
</q-toggle >
78
+ <StatusMessageButton />
77
79
<q-btn dense flat round icon =" menu" @click =" toggleRightDrawer" />
78
80
</q-toolbar >
79
81
Original file line number Diff line number Diff line change @@ -79,11 +79,9 @@ const onCustomStatusMessageSelected = () => {
79
79
</script >
80
80
81
81
<template >
82
- <q-btn
83
- label =" Status Message"
84
- color =" primary"
85
- @click =" dialogOpen = true"
86
- />
82
+ <q-btn flat @click =" dialogOpen = true" >
83
+ <q-icon name =" message" color =" black" />
84
+ </q-btn >
87
85
<q-dialog v-model =" dialogOpen" >
88
86
<q-card class =" q-px-sm q-pb-md" >
89
87
<q-card-section class =" row items-center q-pb-none" >
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import SwitchSidesButton from "@/components/start/SwitchSidesButton.vue";
13
13
import GameEvents from " @/components/match/GameEvents.vue" ;
14
14
import {Command_Type } from " @/proto/ssl_gc_state" ;
15
15
import CommandButton from " @/components/control/CommandButton.vue" ;
16
- import StatusMessageInput from " @/components/match/StatusMessageInput.vue" ;
17
16
18
17
const store = useMatchStateStore ()
19
18
const gcStore = useGcStateStore ()
@@ -82,12 +81,7 @@ onUnmounted(() => {
82
81
</q-card >
83
82
</q-expansion-item >
84
83
<div class =" row" >
85
- <div class =" col" >
86
- <AutoContinueInput />
87
- </div >
88
- <div class =" col" >
89
- <StatusMessageInput />
90
- </div >
84
+ <AutoContinueInput />
91
85
</div >
92
86
<div class =" row justify-evenly" >
93
87
Press
You can’t perform that action at this time.
0 commit comments