Skip to content

Commit

Permalink
gh-682: Multi-line paste Enter confirmation setting was not being saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximus5 committed May 21, 2016
1 parent 62f4a51 commit 0f3583f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConEmu/SetPgPaste.cpp
Expand Up @@ -130,7 +130,7 @@ void CSetPgPaste::OnBtn_ClipConfirmEnter(HWND hDlg, WORD CB, BYTE uCheck)
{
_ASSERTE(CB==cbClipConfirmEnter);

gpSet->isPasteConfirmEnter = (uCheck != BST_CHECKED);
gpSet->isPasteConfirmEnter = (uCheck != BST_UNCHECKED);

} // cbClipConfirmEnter

Expand Down

0 comments on commit 0f3583f

Please sign in to comment.