Skip to content

Commit

Permalink
issue #80 remove superfluous context-menu command "To Input" from cos…
Browse files Browse the repository at this point in the history
…ole dialog, just added for testing
  • Loading branch information
chcg committed Jun 13, 2018
1 parent 452d731 commit 77a365b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions PythonScript/src/ConsoleDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,6 @@ void ConsoleDialog::initDialog(HINSTANCE hInst, NppData& nppData, ConsoleInterfa
mi.dwTypeData = _T("Clear");
InsertMenuItem(m_hContext, 3, TRUE, &mi);

mi.wID = 4;
mi.dwTypeData = _T("To Input");
InsertMenuItem(m_hContext, 4, TRUE, &mi);

m_nppData = nppData;
}

Expand Down Expand Up @@ -173,10 +169,6 @@ INT_PTR CALLBACK ConsoleDialog::run_dlgProc(UINT message, WPARAM wParam, LPARAM
clearText();
break;

case 4: // To input (TODO: TEST only!)
giveInputFocus();
break;

default:
break;
}
Expand Down

0 comments on commit 77a365b

Please sign in to comment.