Skip to content

Commit

Permalink
WeaselDeployer.exe:
Browse files Browse the repository at this point in the history
- Comctl32 version bump to 6.0.0.0
- string table for Hant
- Dialog font size change to 9
- version info for Hant
- SwitcherSettingsDialog schema table title by locale
  • Loading branch information
fxliang committed Mar 8, 2024
1 parent 1a2a845 commit 01803fb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion WeaselDeployer/SwitcherSettingsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ LRESULT SwitcherSettingsDialog::OnInitDialog(UINT, WPARAM, LPARAM, BOOL&) {
schema_list_.SubclassWindow(GetDlgItem(IDC_SCHEMA_LIST));
schema_list_.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT,
LVS_EX_FULLROWSELECT);
schema_list_.AddColumn(L"方案名稱", 0);

CString schemaname;
schemaname.LoadStringW(IDS_STR_SCHEMA_NAME);
schema_list_.AddColumn(schemaname, 0);
CRect rc;
schema_list_.GetClientRect(&rc);
schema_list_.SetColumnWidth(0, rc.Width() - 20);
Expand Down
Binary file modified WeaselDeployer/WeaselDeployer.rc
Binary file not shown.
Binary file modified WeaselDeployer/resource.h
Binary file not shown.
3 changes: 3 additions & 0 deletions WeaselDeployer/stdafx.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@
#include <wtl/atldlgs.h>

#include <logging.h>
#ifdef _UNICODE
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif

0 comments on commit 01803fb

Please sign in to comment.