Skip to content
Snippets Groups Projects
Commit 514bf51c authored by con's avatar con
Browse files

Fixes: - Really implement single click in open doc widget.

RevBy:    - dt
parent e253f393
No related branches found
No related tags found
No related merge requests found
...@@ -70,8 +70,8 @@ OpenEditorsWidget::OpenEditorsWidget() ...@@ -70,8 +70,8 @@ OpenEditorsWidget::OpenEditorsWidget()
m_ui.editorList->setModel(em->openedEditorsModel()); m_ui.editorList->setModel(em->openedEditorsModel());
connect(em, SIGNAL(currentEditorChanged(Core::IEditor*)), connect(em, SIGNAL(currentEditorChanged(Core::IEditor*)),
this, SLOT(updateCurrentItem(Core::IEditor*))); this, SLOT(updateCurrentItem(Core::IEditor*)));
connect(m_ui.editorList, SIGNAL(itemClicked(QTreeWidgetItem*, int)), connect(m_ui.editorList, SIGNAL(clicked(QModelIndex)),
this, SLOT(selectEditor(QTreeWidgetItem*))); this, SLOT(selectEditor(QModelIndex)));
//updateEditorList(); //updateEditorList();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment