Skip to content

Commit

Permalink
ダイアログのボタンの並び修正をrevert #380
Browse files Browse the repository at this point in the history
- 他のブランチで修正を行っているため
  • Loading branch information
zmatsuo committed Dec 23, 2024
1 parent d1d0025 commit 1c032ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion teraterm/teraterm/sendfiledlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ static INT_PTR CALLBACK SendFileDlgProc(HWND hDlgWnd, UINT msg, WPARAM wp, LPARA
HWND hComboBox = GetDlgItem(hDlgWnd, IDC_SENDFILE_SEND_SIZE_DROPDOWN);
GetComboBoxInfo(hComboBox, &cbi);
HWND hEdit = cbi.hwndItem;
SetWindowLongW(hEdit, GWL_STYLE, ES_NUMBER | GetWindowLongW(hEdit, GWL_STYLE));
SetWindowLongPtrW(hEdit, GWL_STYLE, GetWindowLongPtrW(hEdit, GWL_STYLE) | ES_NUMBER);
}

return TRUE;
Expand Down
4 changes: 2 additions & 2 deletions teraterm/teraterm/ttermpro.rc
Original file line number Diff line number Diff line change
Expand Up @@ -358,9 +358,9 @@ BEGIN
COMBOBOX IDC_SENDFILE_SEND_SIZE_DROPDOWN,18,121,65,47,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
LTEXT "delay time(ms)",IDC_SENDFILE_DELAYTIME_LABEL,9,139,75,8
EDITTEXT IDC_SENDFILE_DELAYTIME_EDIT,18,154,40,14,ES_AUTOHSCROLL | ES_NUMBER
DEFPUSHBUTTON "OK",IDOK,104,179,50,14
PUSHBUTTON "Help",IDHELP,104,179,50,14
PUSHBUTTON "Cancel",IDCANCEL,160,179,50,14
PUSHBUTTON "Help",IDHELP,215,179,50,14
DEFPUSHBUTTON "OK",IDOK,215,179,50,14
END

IDD_TABSHEET_THEME DIALOGEX 0, 0, 307, 162
Expand Down

0 comments on commit 1c032ba

Please sign in to comment.