omg im the worst

This commit is contained in:
Adam D. Ruppe 2021-06-10 10:00:47 -04:00
parent 3f6fee45f7
commit f297fbf813
1 changed files with 3 additions and 4 deletions

View File

@ -2879,14 +2879,15 @@ struct RealTimeConsoleInput {
return int.min; // input closed
if(ret == -1) {
import core.stdc.errno;
if(errno == EINTR)
if(errno == EINTR) {
// interrupted by signal call, quite possibly resize or ctrl+c which we want to check for in the event loop
if(interruptable)
return -1;
else
goto try_again;
else
} else {
throw new Exception("read failed");
}
}
//terminal.writef("RAW READ: %d\n", buf[0]);
@ -8448,8 +8449,6 @@ version(TerminalDirectToEmulator) {
int termX = (ev.clientX - paddingLeft) / fontWidth;
int termY = (ev.clientY - paddingTop) / fontHeight;
import std.stdio; writeln(ev.button);
if(sendMouseInputToApplication(termX, termY,
arsd.terminalemulator.MouseEventType.buttonReleased,
cast(arsd.terminalemulator.MouseButton) ev.button,