all repos — openbox @ 29b735d8a92b425a00c0587f78d7d229cbba3012

openbox fork - make it a bit more like ryudo

Prompt should not always use the currently focused button as its result (Fix bug 5518)
Dana Jansens danakj@orodu.net
commit

29b735d8a92b425a00c0587f78d7d229cbba3012

parent

c94992179e99f4088f3a1cb8e304a9fb6035170d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M openbox/prompt.copenbox/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); }