From 3206d25310505e2b4a95e7b3732c3f71fc9ccff9 Mon Sep 17 00:00:00 2001 From: smuddyx Date: Thu, 10 Nov 2022 21:02:36 +0100 Subject: [PATCH] change remote open show icon --- src/app/modules/presentation/remote/remote.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/modules/presentation/remote/remote.component.ts b/src/app/modules/presentation/remote/remote.component.ts index 8a53ce2..8669995 100644 --- a/src/app/modules/presentation/remote/remote.component.ts +++ b/src/app/modules/presentation/remote/remote.component.ts @@ -3,7 +3,7 @@ import {combineLatest} from 'rxjs'; import {PresentationBackground, Show} from '../../shows/services/show'; import {ShowSongService} from '../../shows/services/show-song.service'; import {SongService} from '../../songs/services/song.service'; -import {faDesktop, faRepeat} from '@fortawesome/free-solid-svg-icons'; +import {faDesktop, faFolderOpen} from '@fortawesome/free-solid-svg-icons'; import {ShowService} from '../../shows/services/show.service'; import {ShowSong} from '../../shows/services/show-song'; import {GlobalSettingsService} from '../../../services/global-settings.service'; @@ -32,7 +32,7 @@ export class RemoteComponent { public songs$ = this.songService.list$(); public presentationSongs: PresentationSong[] = []; public progress = false; - public faIcon = faRepeat; + public faIcon = faFolderOpen; public faDesktop = faDesktop;