[ttssh2-commit] [10935] リモートタイトルがセットされていないときタイトルが正しく表示されなかった

Back to archive index
scmno****@osdn***** scmno****@osdn*****
2023年 9月 16日 (土) 23:32:12 JST


Revision: 10935
          https://osdn.net/projects/ttssh2/scm/svn/commits/10935
Author:   zmatsuo
Date:     2023-09-16 23:32:12 +0900 (Sat, 16 Sep 2023)
Log Message:
-----------
リモートタイトルがセットされていないときタイトルが正しく表示されなかった

- タイトル = ウィンドウタイトル
- 「設定」-「ウィンドウ」の「タイトル」の設定が使われずに "-" となっていた

Modified Paths:
--------------
    trunk/teraterm/teraterm/ttwinman.c

-------------- next part --------------
Modified: trunk/teraterm/teraterm/ttwinman.c
===================================================================
--- trunk/teraterm/teraterm/ttwinman.c	2023-09-16 01:02:49 UTC (rev 10934)
+++ trunk/teraterm/teraterm/ttwinman.c	2023-09-16 14:32:12 UTC (rev 10935)
@@ -95,10 +95,8 @@
 	{
 		wchar_t *title = ToWcharA(ts.Title);
 		const wchar_t *title_remote = cv.TitleRemoteW;
-		if (title_remote == NULL) {
-			title_remote = L"-";
-		}
-		if (Connecting || !cv.Ready || wcslen(title_remote) == 0) {
+		if (Connecting || !cv.Ready || title_remote == NULL || title_remote[0] == 0) {
+			// \x83\x8A\x83\x82\x81[\x83g\x83^\x83C\x83g\x83\x8B\x82\xF0\x8Eg\x97p\x82\xB5\x82Ȃ\xA2 or \x90ݒ肳\x82\xEA\x82Ă\xA2\x82Ȃ\xA2
 			wcsncpy_s(TempTitleWithRemote, _countof(TempTitleWithRemote), title, _TRUNCATE);
 			wcsncpy_s(TempTitle, _countof(TempTitle), title, _TRUNCATE);
 		}


ttssh2-commit メーリングリストの案内
Back to archive index