Skip to content

Commit

Permalink
adjusted Extension
Browse files Browse the repository at this point in the history
  • Loading branch information
daddel80 committed Dec 2, 2024
1 parent 3ea76ed commit 87b8a52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/MultiReplacePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ void MultiReplace::positionAndResizeControls(int windowWidth, int windowHeight)
ctrlMap[IDC_REPLACE_FIRST_CHECKBOX] = { sx(16), sy(151), sx(158), checkboxHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_replace_first_match_only"), BS_AUTOCHECKBOX | WS_TABSTOP, NULL };
ctrlMap[IDC_WRAP_AROUND_CHECKBOX] = { sx(16), sy(176), sx(158), checkboxHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_wrap_around"), BS_AUTOCHECKBOX | WS_TABSTOP, NULL };

ctrlMap[IDC_SEARCH_MODE_GROUP] = { sx(180), sy(79), sx(163), sy(104), WC_BUTTON, getLangStrLPCWSTR(L"panel_search_mode"), BS_GROUPBOX, NULL };
ctrlMap[IDC_NORMAL_RADIO] = { sx(188), sy(101), sx(150), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_normal"), BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, NULL };
ctrlMap[IDC_EXTENDED_RADIO] = { sx(188), sy(126), sx(150), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_extended"), BS_AUTORADIOBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_REGEX_RADIO] = { sx(188), sy(150), sx(150), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_regular_expression"), BS_AUTORADIOBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_SEARCH_MODE_GROUP] = { sx(180), sy(79), sx(168), sy(104), WC_BUTTON, getLangStrLPCWSTR(L"panel_search_mode"), BS_GROUPBOX, NULL };
ctrlMap[IDC_NORMAL_RADIO] = { sx(188), sy(101), sx(155), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_normal"), BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, NULL };
ctrlMap[IDC_EXTENDED_RADIO] = { sx(188), sy(126), sx(155), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_extended"), BS_AUTORADIOBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_REGEX_RADIO] = { sx(188), sy(150), sx(155), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_regular_expression"), BS_AUTORADIOBUTTON | WS_TABSTOP, NULL };

ctrlMap[IDC_SCOPE_GROUP] = { sx(362), sy(79), sx(198), sy(125), WC_BUTTON, getLangStrLPCWSTR(L"panel_scope"), BS_GROUPBOX, NULL };
ctrlMap[IDC_ALL_TEXT_RADIO] = { sx(370), sy(101), sx(184), radioButtonHeight, WC_BUTTON, getLangStrLPCWSTR(L"panel_all_text"), BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, NULL };
Expand Down

0 comments on commit 87b8a52

Please sign in to comment.