Browse Source

auto acp scripted

master
jfinn 4 years ago
parent
commit
fbef8ae7b2
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      react/features/video-layout/functions.js

+ 4
- 2
react/features/video-layout/functions.js View File

@@ -43,7 +43,8 @@ export function getMaxColumnCount() {
43 43
  * @returns {Object} An object is return with the desired number of columns,
44 44
  * rows, and visible rows (the rest should overflow) for the tile view layout.
45 45
  */
46
-export function getTileViewGridDimensions_setpill(state: Object) {
46
+// export function getTileViewGridDimensions_setpill(state: Object) {
47
+export function getTileViewGridDimensions(state: Object) {
47 48
     // When in tile view mode, we must discount ourselves (the local participant) because our
48 49
     // tile is not visible.
49 50
     const { iAmRecorder } = state['features/base/config'];
@@ -102,7 +103,8 @@ export function getTileViewGridDimensions_setpill(state: Object) {
102 103
  * @returns {Object} An object is return with the desired number of columns,
103 104
  * rows, and visible rows (the rest might overflow) for the tile view layout.
104 105
  */
105
-export function getTileViewGridDimensions(state: Object, maxColumns: number = getMaxColumnCount()) {
106
+// export function getTileViewGridDimensions(state: Object, maxColumns: number = getMaxColumnCount()) {
107
+export function getTileViewGridDimensions_jfinn(state: Object, maxColumns: number = getMaxColumnCount()) {
106 108
     // When in tile view mode, we must discount ourselves (the local participant) because our
107 109
     // tile is not visible.
108 110
     const { iAmRecorder } = state['features/base/config'];

Loading…
Cancel
Save