mirror of
https://github.com/paleotronic/microm8-gui.git
synced 2024-11-29 14:50:09 +00:00
fix cr
This commit is contained in:
parent
f09f0b85fa
commit
3c40bcf340
@ -2732,7 +2732,7 @@ begin
|
|||||||
|
|
||||||
lastFocusLostTime:=Now();
|
lastFocusLostTime:=Now();
|
||||||
SimpleGet( baseUrl + '/api/control/mouse/buttonstate/1' );
|
SimpleGet( baseUrl + '/api/control/mouse/buttonstate/1' );
|
||||||
Delay(50);
|
Sleep(50);
|
||||||
SimpleGet( baseUrl + '/api/control/mouse/buttonstate/0' );
|
SimpleGet( baseUrl + '/api/control/mouse/buttonstate/0' );
|
||||||
end;
|
end;
|
||||||
ReposWindow;
|
ReposWindow;
|
||||||
@ -2884,10 +2884,10 @@ begin
|
|||||||
VK_BACK:
|
VK_BACK:
|
||||||
if isCtrl and isShift then
|
if isCtrl and isShift then
|
||||||
Result := 0;
|
Result := 0;
|
||||||
13: begin
|
VK_RETURN: begin
|
||||||
if isAlt or isShift or isCtrl then
|
if not isAlt then
|
||||||
Result := 0;
|
Result := 13;
|
||||||
end;
|
end;
|
||||||
VK_SHIFT: Result := 0;
|
VK_SHIFT: Result := 0;
|
||||||
VK_CAPITAL: begin
|
VK_CAPITAL: begin
|
||||||
if KeyUp then
|
if KeyUp then
|
||||||
|
8
main.pas
8
main.pas
@ -2884,10 +2884,12 @@ begin
|
|||||||
VK_BACK:
|
VK_BACK:
|
||||||
if isCtrl and isShift then
|
if isCtrl and isShift then
|
||||||
Result := 0;
|
Result := 0;
|
||||||
13: begin
|
VK_RETURN: begin
|
||||||
if isAlt or isShift or isCtrl then
|
if not isAlt then
|
||||||
|
Result := 13
|
||||||
|
else
|
||||||
Result := 0;
|
Result := 0;
|
||||||
end;
|
end;
|
||||||
VK_SHIFT: Result := 0;
|
VK_SHIFT: Result := 0;
|
||||||
VK_CAPITAL: begin
|
VK_CAPITAL: begin
|
||||||
if KeyUp then
|
if KeyUp then
|
||||||
|
Loading…
Reference in New Issue
Block a user