Removed debug statement that gave lot of output and which was not needed anymore.

This commit is contained in:
eelke 2019-08-19 16:06:23 +02:00
parent 48ac8c6bab
commit 033d2b3d45

View file

@ -160,7 +160,6 @@ void CodeEditor::gutterAreaPaintEvent(QPaintEvent *event)
void CodeEditor::keyPressEvent(QKeyEvent *e)
{
auto k = e->key();
qDebug() << QString("%1").arg(k, 0, 16);
if (k == Qt::Key_Tab) {
// Function returns false if there was no selection to indent
if (indentSelection(true))