Develop and Download Open Source Software

Browse CVS Repository

Diff of /ttssh2/teraterm/source/teraterm/vtdisp.c

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

revision 1.23 by yutakapon, Wed Jan 30 12:42:40 2008 UTC revision 1.24 by yutakapon, Thu Jan 31 15:35:23 2008 UTC
# Line 1297  void BGFillRect(HDC hdc,RECT *R,HBRUSH b Line 1297  void BGFillRect(HDC hdc,RECT *R,HBRUSH b
1297    
1298  void BGScrollWindow(HWND hwnd,int xa,int ya,RECT *Rect,RECT *ClipRect)  void BGScrollWindow(HWND hwnd,int xa,int ya,RECT *Rect,RECT *ClipRect)
1299  {  {
1300    if(!BGEnable)          if (ts.MaximizedBugTweak) {
1301      ScrollWindow(hwnd,xa,ya,Rect,ClipRect);                  // Eterm lookfeelが有効、もしくは最大化ウィンドウの場合はスクロールは使わない。
1302    else                  // これにより、最大化ウィンドウで文字欠けとなる現象が改善される。(2008.2.1 doda, yutaka)
1303      InvalidateRect(HVTWin,ClipRect,FALSE);            if(BGEnable || IsZoomed(hwnd))
1304                    InvalidateRect(HVTWin,ClipRect,FALSE);
1305              else
1306                    ScrollWindow(hwnd,xa,ya,Rect,ClipRect);
1307            } else {
1308              if(!BGEnable)
1309                    ScrollWindow(hwnd,xa,ya,Rect,ClipRect);
1310              else
1311                    InvalidateRect(HVTWin,ClipRect,FALSE);
1312            }
1313  }  }
1314    
1315  void BGOnEnterSizeMove(void)  void BGOnEnterSizeMove(void)

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

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