Prompt should not always use the currently focused button as its result (Fix bug 5518)

This commit is contained in:
Dana Jansens 2012-09-30 18:09:37 -04:00
parent c94992179e
commit 29b735d8a9

View file

@ -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);
}