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; break;
case XK_Return: case XK_Return:
case XK_KP_Enter: case XK_KP_Enter:
puts((sel && !(ev->state & ShiftMask)) ? sel->text : text); /* This is where we are handling Ctrl+Enter/Enter and were handling Shift+Enter */
if (!(ev->state & ControlMask)) { if (sel) {
puts(sel->text);
if (!(ev->state & ControlMask)){
cleanup(); cleanup();
exit(0); exit(0);
} }
if (sel)
sel->out = 1; sel->out = 1;
}
break; break;
case XK_Right: case XK_Right:
case XK_KP_Right: case XK_KP_Right: