From 0277a99d082466bae1b7d3577900598e0becde79 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Thu, 12 Feb 2015 16:50:25 -0600 Subject: [PATCH] wmaker: Add autocomplete/history feature to keyboard shortcut Run dialog. As reported by Juan Giordana, the autocomplete/history feature which is available to Run dialogs brought up by the root menu is not available to Run dialogs brought up by a keyboard shortcut. This patch enables this behavior. --- src/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.c b/src/event.c index 6b2e0db0..3e2ecb6f 100644 --- a/src/event.c +++ b/src/event.c @@ -1791,7 +1791,7 @@ static void handleKeyPress(XEvent * event) { char *cmdline; - cmdline = ExpandOptions(scr, _("exec %a(Run,Type command to run:)")); + cmdline = ExpandOptions(scr, _("exec %A(Run,Type command to run:)")); if (cmdline) { XGrabPointer(dpy, scr->root_win, True, 0, -- 2.11.4.GIT