Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

「ファイルのプロパティ」ダイアログのエディットコントロールにTabStopを付ける #670

Merged
merged 1 commit into from
Dec 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sakura_core/sakura_rc.rc
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ STYLE DS_MODALFRAME | DS_SETFOREGROUND | DS_CENTER | WS_POPUP | WS_CAPTION | WS_
CAPTION "ファイルのプロパティ"
FONT 9, "MS Pゴシック"
BEGIN
EDITTEXT IDC_EDIT_PROPERTY, 5, 5, 260, 200, ES_MULTILINE | ES_READONLY | WS_VSCROLL | NOT WS_TABSTOP
DEFPUSHBUTTON "閉じる(&C)", IDOK, 155, 208, 50, 14
PUSHBUTTON "ヘルプ(&H)", IDC_BUTTON_HELP, 215, 208, 50, 14
EDITTEXT IDC_EDIT_PROPERTY, 5, 5, 260, 200, ES_MULTILINE | ES_READONLY | WS_VSCROLL | WS_TABSTOP
END

IDD_INPUT1 DIALOGEX 0, 0, 185, 55
Expand Down
2 changes: 1 addition & 1 deletion sakura_core/util/design_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
TypeName(const TypeName&) = delete; \
TypeName& operator=(const TypeName&) = delete; \
TypeName(TypeName&&) = delete; \
TypeName(TypeName&&) = delete; \
TypeName& operator=(TypeName&&) = delete;

/*!
Expand Down
2 changes: 1 addition & 1 deletion sakura_lang_en_US/sakura_lang_rc.rc
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,9 @@ STYLE DS_MODALFRAME | DS_SETFOREGROUND | DS_CENTER | WS_POPUP | WS_CAPTION | WS_
CAPTION "File Property"
FONT 9, "Tahoma"
BEGIN
EDITTEXT IDC_EDIT_PROPERTY, 5, 5, 260, 200, ES_MULTILINE | ES_READONLY | WS_VSCROLL | NOT WS_TABSTOP
DEFPUSHBUTTON "&Close", IDOK, 155, 208, 50, 14
PUSHBUTTON "&Help", IDC_BUTTON_HELP, 215, 208, 50, 14
EDITTEXT IDC_EDIT_PROPERTY, 5, 5, 260, 200, ES_MULTILINE | ES_READONLY | WS_VSCROLL | WS_TABSTOP
END

IDD_INPUT1 DIALOGEX 0, 0, 185, 55
Expand Down