From fff6d43a40450e10d79a2ddef165ed4ea62e0f6c Mon Sep 17 00:00:00 2001 From: Rosia E Evans Date: Thu, 8 Aug 2024 12:32:38 +0100 Subject: [PATCH] bugfix --- Src/Page.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Page.h b/Src/Page.h index 6b582df..600dcb9 100644 --- a/Src/Page.h +++ b/Src/Page.h @@ -13,8 +13,8 @@ struct FileFlags { - bool hidden; // removes page from navbar when hidePages option is set - bool alwaysHidden; // page will never be added to navbar, good for files you want to keep but only link to + bool hidden = false; // removes page from navbar when hidePages option is set + bool alwaysHidden = false; // page will never be added to navbar, good for files you want to keep but only link to }; class FlagReader