From a49f3ac7f00b43cdf580f4dc1cf5945d260a74b5 Mon Sep 17 00:00:00 2001 From: Declan Freeman-Gleason Date: Thu, 10 Dec 2020 11:22:03 -0500 Subject: [PATCH] Don't show FPS tips in driver mode (#175) --- photon-client/src/views/PipelineView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon-client/src/views/PipelineView.vue b/photon-client/src/views/PipelineView.vue index f9be00b1c..6c486f96d 100644 --- a/photon-client/src/views/PipelineView.vue +++ b/photon-client/src/views/PipelineView.vue @@ -406,7 +406,7 @@ export default { fpsTooLow: { get() { // For now we only show the FPS is too low warning when GPU acceleration is enabled, because we don't really trust the presented video modes otherwise - return this.$store.state.pipelineResults.fps - this.$store.getters.currentVideoFormat.fps < -5 && this.$store.state.pipelineResults.fps !== 0 && this.$store.state.settings.general.gpuAcceleration; + return this.$store.state.pipelineResults.fps - this.$store.getters.currentVideoFormat.fps < -5 && this.$store.state.pipelineResults.fps !== 0 && !this.$store.getters.isDriverMode && this.$store.state.settings.general.gpuAcceleration; } }, latency: {