From 2c065ae5b6404db7eea34983c62b78132a2c008c Mon Sep 17 00:00:00 2001
From: BigBahss <tdennis4496@gmail.com>
Date: Wed, 3 Feb 2021 10:32:00 -0500
Subject: [PATCH] Dont disable option to open log when project open fails

---
 src/mainwindow.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 467ac6bc..853d0a2b 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -84,6 +84,7 @@ void MainWindow::setWindowDisabled(bool disabled) {
     ui->action_Exit->setDisabled(false);
     ui->menuHelp->setDisabled(false);
     ui->actionAbout_Porymap->setDisabled(false);
+    ui->actionOpen_Log_File->setDisabled(false);
     if (!disabled)
         togglePreferenceSpecificUi();
 }