From 2e9b37f3b492b1cfaed0bcbb0f69bf46fa49961c Mon Sep 17 00:00:00 2001
From: Gary Talent <gary@drinkingtea.net>
Date: Thu, 27 Mar 2025 20:32:53 -0500
Subject: [PATCH] Fix default Show button

---
 src/mainwindow.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 83f7a43..f326d15 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -201,8 +201,8 @@ void MainWindow::setupViewControls(QVBoxLayout *rootLyt) {
 		});
 		views.emplace_back(View{
 			.name = tr("Show"),
-			.slides = false,
-			.obsSlides = false,
+			.slides = true,
+			.obsSlides = true,
 		});
 	}
 	setupViewControlButtons(views, viewCtlLyt);