From 83f72e534bc15063da3bd33f44cdde0633ec2d02 Mon Sep 17 00:00:00 2001 From: Andreas Mair Date: Sun, 2 Jan 2011 10:53:49 +0100 Subject: Commands without a confirmation request never got executed (fixes #497). --- mymenucommands.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mymenucommands.c b/mymenucommands.c index 9122cd5..b7570ac 100644 --- a/mymenucommands.c +++ b/mymenucommands.c @@ -131,6 +131,8 @@ eOSState myMenuCommands::Execute() confirmed=Interface->Confirm(buffer); free(buffer); } + } else { + confirmed=true; } if(confirmed) { -- cgit v1.2.3