Skip to content

Commit

Permalink
able to reset line width
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed May 24, 2023
1 parent 481334a commit 500a172
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,11 @@
- Improved drawing of the board.
- Avoided EMF drawing defects for external softwares with incomplete EMF support.
- 2023-XX-YY ver.5.0.5
- Line widths are now saved in the LOOKS file.
- Line width are now saved in the LOOKS file.
- Implemented "Recently Used Files".
- Assign Ctrl+D to "Copy the double-frame word".
- Fixed image not updating when dropped.
- Line width can now be reset as well.

# 開発履歴 (Japanese)

Expand Down Expand Up @@ -753,3 +755,5 @@
- LOOKSファイルに線の幅を保存するようにした。
- 「最近使ったファイル」を実装。
- Ctrl+Dを「二重マス単語をコピー」に割り付け。
- ドロップしたときにイメージが更新されてなかったのを修正。
- 線の幅もリセットできるようにした。
3 changes: 3 additions & 0 deletions XG_SettingsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,9 @@ void XG_SettingsDialog::OnResetLooks(HWND hwnd)
HWND hCmb2 = GetDlgItem(hwnd, cmb2);
ComboBox_SetText(hCmb2, XgLoadStringDx1(IDS_DBLFRAME_LETTERS_1));

// 線の幅。
::SetDlgItemTextW(hwnd, edt6, L"1.0");

UpdateBlockPreview(hwnd);
}

Expand Down

0 comments on commit 500a172

Please sign in to comment.