From 4811f92c399a5941175591c578f30baffe9cb8ec Mon Sep 17 00:00:00 2001 From: Lawrence Lee <45837045+Lawrence37@users.noreply.github.com> Date: Sun, 2 May 2021 12:35:05 -0700 Subject: [PATCH] Add missing return statement --- rtgui/filecatalog.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/filecatalog.cc b/rtgui/filecatalog.cc index d0316a2d4..a685bebe9 100644 --- a/rtgui/filecatalog.cc +++ b/rtgui/filecatalog.cc @@ -2539,6 +2539,8 @@ bool FileCatalog::handleShortcutKeyRelease(GdkEventKey* event) return true; } } + + return false; } void FileCatalog::showToolBar()