Skip to content

Commit

Permalink
「ファイルのプロパティ」ダイアログのエディットコントロールにTabStopを付ける
Browse files Browse the repository at this point in the history
「ファイルのプロパティ」ダイアログのタブオーダーを調整、エディットコントロールを先頭にするとダイアログ表示時に選択状態になるので見た目が前と変わってしまう為
design_template.h ファイルの改行コード混在を修正
  • Loading branch information
beru committed Dec 2, 2018
1 parent 6f13e02 commit 4246efc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 4246efc

Please sign in to comment.