From dd4eed5ed22d3b4fc1b23b5025ac95a0929a7fbb Mon Sep 17 00:00:00 2001 From: and3md Date: Sun, 18 Feb 2018 15:58:40 +0100 Subject: [PATCH] Fix AppFrame after add popup menus to all widgets. --- src/dlangui/widgets/appframe.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dlangui/widgets/appframe.d b/src/dlangui/widgets/appframe.d index 11aeef41..7c2acd50 100644 --- a/src/dlangui/widgets/appframe.d +++ b/src/dlangui/widgets/appframe.d @@ -256,7 +256,7 @@ class AppFrame : VerticalLayout, MenuItemClickHandler, MenuItemActionHandler { } /// override to handle main menu actions - bool onMenuItemAction(const Action action) { + override bool onMenuItemAction(const Action action) { // default handling: dispatch action using window (first offered to focused control, then to main widget) return window.dispatchAction(action); }