ui: Fix copy shortcut for selected code broken #943

fixes #940
This commit is contained in:
Eberhard Gräther
2020-03-23 18:10:21 +01:00
committed by GitHub
parent 38925292b7
commit eaa263be44
12 changed files with 56 additions and 0 deletions
@@ -370,6 +370,14 @@ void QtCodeFileList::moveFocus(const CodeFocusHandler::Focus& focus, CodeFocusHa
}
}
void QtCodeFileList::copySelection()
{
for (QtCodeFile* file: m_files)
{
file->copySelection();
}
}
void QtCodeFileList::maximizeFirstFile()
{
if (m_files.size())