svnno****@sourc*****
svnno****@sourc*****
2009年 11月 8日 (日) 23:56:55 JST
Revision: 3673 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=3673 Author: yutakapon Date: 2009-11-08 23:56:55 +0900 (Sun, 08 Nov 2009) Log Message: ----------- ã¦ã£ã³ãã¦ãæ大åããã³æå°åããã¦ããå ´åããã®ç¶æ ãç¶æã§ããããã«ã SW_SHOWNORMAL ãã SW_SHOW ã¸å¤æ´ããã Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html trunk/teraterm/ttpcmn/ttcmn.c -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2009-10-31 15:14:14 UTC (rev 3672) +++ trunk/doc/en/html/about/history.html 2009-11-08 14:56:55 UTC (rev 3673) @@ -45,6 +45,7 @@ <li>added support for resizing the list box in the Broadcast Command window.</li> <li>The list box in the Broadcast Command periodically updates.</li> <li>added the status bar at the bottom of the ConfirmChangePaste dialog.</li> + <li>When a user switches the Tera Term window by using CTRL+TAB key, a new window style is not changed.</li> <li>added the "<a href="../macro/command/setdebug.html">setdebug</a>" macro command.</li> </ul> </li> Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2009-10-31 15:14:14 UTC (rev 3672) +++ trunk/doc/ja/html/about/history.html 2009-11-08 14:56:55 UTC (rev 3673) @@ -45,6 +45,7 @@ <li>Broadcast CommandÌ_CAO{bNXðTCYÏXÅ«éæ¤Éµ½B</li> <li>Broadcast CommandÌXg{bNXðèúIÉXV·éæ¤Éµ½B</li> <li>ConfirmChangePaste_CAOÉXe[^Xo[ðÇÁµ½B</li> + <li>CTRL+TABÉæéEBhEØè֦ɨ¢ÄAEBhEÌÅ廨æÑŬ»óÔðÛ·éæ¤Éµ½B</li> <li>}NR}h "<a href="../macro/command/setdebug.html">setdebug</a>" ðÇÁµ½B</li> </ul> </li> Modified: trunk/teraterm/ttpcmn/ttcmn.c =================================================================== --- trunk/teraterm/ttpcmn/ttcmn.c 2009-10-31 15:14:14 UTC (rev 3672) +++ trunk/teraterm/ttpcmn/ttcmn.c 2009-11-08 14:56:55 UTC (rev 3673) @@ -888,7 +888,11 @@ void FAR PASCAL SelectWin(int WinId) { if ((WinId>=0) && (WinId<pm->NWin)) { - ShowWindow(pm->WinList[WinId],SW_SHOWNORMAL); + /* EBhEªÅ廨æÑŬ»³êÄ¢½êA»ÌóÔðÛÅ«éæ¤ÉA + * SW_SHOWNORMAL ©ç SW_SHOW ÖÏXµ½B + * (2009.11.8 yutaka) + */ + ShowWindow(pm->WinList[WinId],SW_SHOW); SetForegroundWindow(pm->WinList[WinId]); } }