Removed ability to output arbitrary text. All the output is taken from options
This commit is contained in:
parent
6a3e21f568
commit
5573f5bd23
8
dmenu.c
8
dmenu.c
@ -538,13 +538,15 @@ insert:
|
||||
break;
|
||||
case XK_Return:
|
||||
case XK_KP_Enter:
|
||||
puts((sel && !(ev->state & ShiftMask)) ? sel->text : text);
|
||||
if (!(ev->state & ControlMask)) {
|
||||
/* This is where we are handling Ctrl+Enter/Enter and were handling Shift+Enter */
|
||||
if (sel) {
|
||||
puts(sel->text);
|
||||
if (!(ev->state & ControlMask)){
|
||||
cleanup();
|
||||
exit(0);
|
||||
}
|
||||
if (sel)
|
||||
sel->out = 1;
|
||||
}
|
||||
break;
|
||||
case XK_Right:
|
||||
case XK_KP_Right:
|
||||
|
Loading…
Reference in New Issue
Block a user