diff --git a/gui/src/components/dynamic_components2.vue b/gui/src/components/dynamic_components2.vue index 6e1650b0..caca9a74 100644 --- a/gui/src/components/dynamic_components2.vue +++ b/gui/src/components/dynamic_components2.vue @@ -138,7 +138,7 @@ const gridWidgets = [ ), new gridWidget( grid_ptt, - { x: 17, y: 8, w: 2, h: 8 }, + { x: 17, y: 8, w: 5, h: 12 }, "Tx/PTT indicator", true, true, @@ -146,7 +146,7 @@ const gridWidgets = [ ), new gridWidget( grid_mycall, - { x: 8, y: 40, w: 5, h: 8 }, + { x: 8, y: 40, w: 5, h: 15 }, "My callsign widget", true, true, diff --git a/gui/src/components/grid/grid_active_audio.vue b/gui/src/components/grid/grid_active_audio.vue index 54878796..757ef141 100644 --- a/gui/src/components/grid/grid_active_audio.vue +++ b/gui/src/components/grid/grid_active_audio.vue @@ -5,12 +5,6 @@ setActivePinia(pinia); import { useStateStore } from "../../store/stateStore.js"; const state = useStateStore(pinia); - -import { record_audio } from "../../js/sock"; - -function startStopRecordAudio() { - record_audio(); -}