From: Dana Jansens Date: Sun, 30 Sep 2012 22:09:37 +0000 (-0400) Subject: Prompt should not always use the currently focused button as its result (Fix bug... X-Git-Tag: release-3.5.1~80 X-Git-Url: http://git.openbox.org/?p=dana%2Fopenbox.git;a=commitdiff_plain;h=29b735d8a92b425a00c0587f78d7d229cbba3012;ds=sidebyside Prompt should not always use the currently focused button as its result (Fix bug 5518) --- diff --git a/openbox/prompt.c b/openbox/prompt.c index 051c993..88c74b6 100644 --- a/openbox/prompt.c +++ b/openbox/prompt.c @@ -595,7 +595,7 @@ static void prompt_run_callback(ObPrompt *self, gint result) { prompt_ref(self); if (self->func) { - gboolean clean = self->func(self, self->focus->result, self->data); + gboolean clean = self->func(self, result, self->data); if (clean && self->cleanup) self->cleanup(self, self->data); }