Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/teraterm/vtterm.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 6943 by doda, Wed Sep 27 03:16:21 2017 UTC revision 7042 by doda, Wed Feb 21 03:01:42 2018 UTC
# Line 5846  BOOL MouseReport(int Event, int Button, Line 5846  BOOL MouseReport(int Event, int Button,
5846          DispConvWinToScreen(Xpos, Ypos, &x, &y, NULL);          DispConvWinToScreen(Xpos, Ypos, &x, &y, NULL);
5847          x++; y++;          x++; y++;
5848    
5849          if (x < 1) x = 1;          if (x < 1)
5850          if (y < 1) y = 1;                  x = 1;
5851            else if (x > NumOfColumns)
5852                    x = NumOfColumns;
5853            if (y < 1)
5854                    y = 1;
5855            else if (y > NumOfLines)
5856                    y = NumOfLines;
5857    
5858          if (ShiftKey())          if (ShiftKey())
5859                  modifier = 4;                  modifier = 4;

Legend:
Removed from v.6943  
changed lines
  Added in v.7042

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26