Skip to content

Commit

Permalink
Fix dialog text "Copy these results to the clipboard" clipped on some…
Browse files Browse the repository at this point in the history
… systems. Also, correct FALSE return from INITDIALOG to TRUE (didn't seem to matter, but was technically incorrect).
  • Loading branch information
Coises committed Apr 12, 2023
1 parent 5445aa7 commit ef24a61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified src/ColumnsPlusPlus.rc
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Numeric.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ INT_PTR CALLBACK calculationResultsDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wP
case ColumnsPlusPlusData::Thousands::Apostrophe: CheckRadioButton(hwndDlg, IDC_THOUSANDS_NONE, IDC_THOUSANDS_BLANK, IDC_THOUSANDS_APOSTROPHE); break;
case ColumnsPlusPlusData::Thousands::Blank : CheckRadioButton(hwndDlg, IDC_THOUSANDS_NONE, IDC_THOUSANDS_BLANK, IDC_THOUSANDS_BLANK ); break;
}
return FALSE;
return TRUE;
}

case WM_COMMAND:
Expand Down

0 comments on commit ef24a61

Please sign in to comment.