From 984a8b6afc5b665e5bc918cfe6b314b21648d1c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sat, 12 Aug 2023 07:44:36 +0200 Subject: [PATCH] Try to open all files when browsing using the keys --- src/GUI/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/gui.cpp b/src/GUI/gui.cpp index 9de1c3d8..44645cb5 100644 --- a/src/GUI/gui.cpp +++ b/src/GUI/gui.cpp @@ -2188,7 +2188,7 @@ void GUI::keyPressEvent(QKeyEvent *event) if (!file.isNull()) { if (!(event->modifiers() & MODIFIER)) closeFiles(); - openFile(file, false, showError); + openFile(file, true, showError); return; }