mirror of https://github.com/adamdruppe/arsd.git
omg im the worst
This commit is contained in:
parent
3f6fee45f7
commit
f297fbf813
|
@ -2879,14 +2879,15 @@ struct RealTimeConsoleInput {
|
||||||
return int.min; // input closed
|
return int.min; // input closed
|
||||||
if(ret == -1) {
|
if(ret == -1) {
|
||||||
import core.stdc.errno;
|
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
|
// interrupted by signal call, quite possibly resize or ctrl+c which we want to check for in the event loop
|
||||||
if(interruptable)
|
if(interruptable)
|
||||||
return -1;
|
return -1;
|
||||||
else
|
else
|
||||||
goto try_again;
|
goto try_again;
|
||||||
else
|
} else {
|
||||||
throw new Exception("read failed");
|
throw new Exception("read failed");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//terminal.writef("RAW READ: %d\n", buf[0]);
|
//terminal.writef("RAW READ: %d\n", buf[0]);
|
||||||
|
@ -8448,8 +8449,6 @@ version(TerminalDirectToEmulator) {
|
||||||
int termX = (ev.clientX - paddingLeft) / fontWidth;
|
int termX = (ev.clientX - paddingLeft) / fontWidth;
|
||||||
int termY = (ev.clientY - paddingTop) / fontHeight;
|
int termY = (ev.clientY - paddingTop) / fontHeight;
|
||||||
|
|
||||||
import std.stdio; writeln(ev.button);
|
|
||||||
|
|
||||||
if(sendMouseInputToApplication(termX, termY,
|
if(sendMouseInputToApplication(termX, termY,
|
||||||
arsd.terminalemulator.MouseEventType.buttonReleased,
|
arsd.terminalemulator.MouseEventType.buttonReleased,
|
||||||
cast(arsd.terminalemulator.MouseButton) ev.button,
|
cast(arsd.terminalemulator.MouseButton) ev.button,
|
||||||
|
|
Loading…
Reference in New Issue