Removed ability to output arbitrary text. All the output is taken from options

This commit is contained in:
Андреев Григорий 2025-04-02 13:35:06 +03:00
parent 6a3e21f568
commit 5573f5bd23

View File

@ -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: