Skip to content

Commit

Permalink
[w32g] Fix CONTROL statements in resource script
Browse files Browse the repository at this point in the history
  • Loading branch information
starg2 committed Dec 22, 2024
1 parent 91294a3 commit 55e9601
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface/w32g_res.rc
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ CAPTION "
FONT 9, "MS UI Gothic", 400, 0, 128
{
#ifdef TIMW32G_USE_NEW_CONSOLE
CONTROL "", IDC_EDIT, "TimW32gNewConsole", 0, 0, 250, 175, WS_HSCROLL | WS_VSCROLL
CONTROL "", IDC_EDIT, "TimW32gNewConsole", WS_HSCROLL | WS_VSCROLL, 0, 0, 250, 175
#else
EDITTEXT IDC_EDIT, 0, 0, 250, 175, WS_HSCROLL | WS_VSCROLL | ES_AUTOHSCROLL | ES_AUTOVSCROLL | ES_MULTILINE | ES_NOHIDESEL | ES_READONLY | ES_WANTRETURN, WS_EX_STATICEDGE
#endif
Expand All @@ -238,7 +238,7 @@ CAPTION "Console Window (TiMidity++ Win32GUI)"
FONT 8, "Tahoma", 400, 0, 0
{
#ifdef TIMW32G_USE_NEW_CONSOLE
CONTROL "", IDC_EDIT, "TimW32gNewConsole", 0, 0, 250, 175, WS_HSCROLL | WS_VSCROLL
CONTROL "", IDC_EDIT, "TimW32gNewConsole", WS_HSCROLL | WS_VSCROLL, 0, 0, 250, 175
#else
EDITTEXT IDC_EDIT, 0, 0, 250, 175, WS_HSCROLL | WS_VSCROLL | ES_AUTOHSCROLL | ES_AUTOVSCROLL | ES_MULTILINE | ES_NOHIDESEL | ES_READONLY | ES_WANTRETURN, WS_EX_STATICEDGE
#endif
Expand Down

0 comments on commit 55e9601

Please sign in to comment.