Commit ce8b4692 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

Hide <-> Show Advanced.

parent a677ac55
......@@ -102,12 +102,12 @@ static void set_advanced(HWND dialog)
if (advanced)
{
state = SW_NORMAL;
LoadString(GetModuleHandle(NULL), IDS_SHOW_ADVANCED, text, 256);
LoadString(GetModuleHandle(NULL), IDS_HIDE_ADVANCED, text, 256);
}
else
{
state = SW_HIDE;
LoadString(GetModuleHandle(NULL), IDS_HIDE_ADVANCED, text, 256);
LoadString(GetModuleHandle(NULL), IDS_SHOW_ADVANCED, text, 256);
}
ShowWindow(GetDlgItem(dialog, IDC_RADIO_AUTODETECT), state);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment