Skip to content

Commit 77a365b

Browse files
committed
issue bruderstein#80 remove superfluous context-menu command "To Input" from cosole dialog, just added for testing
1 parent 452d731 commit 77a365b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

PythonScript/src/ConsoleDialog.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,6 @@ void ConsoleDialog::initDialog(HINSTANCE hInst, NppData& nppData, ConsoleInterfa
9696
mi.dwTypeData = _T("Clear");
9797
InsertMenuItem(m_hContext, 3, TRUE, &mi);
9898

99-
mi.wID = 4;
100-
mi.dwTypeData = _T("To Input");
101-
InsertMenuItem(m_hContext, 4, TRUE, &mi);
102-
10399
m_nppData = nppData;
104100
}
105101

@@ -173,10 +169,6 @@ INT_PTR CALLBACK ConsoleDialog::run_dlgProc(UINT message, WPARAM wParam, LPARAM
173169
clearText();
174170
break;
175171

176-
case 4: // To input (TODO: TEST only!)
177-
giveInputFocus();
178-
break;
179-
180172
default:
181173
break;
182174
}

0 commit comments

Comments
 (0)