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
@@ -261,6 +261,14 @@ void QtCodeFileSingle::moveFocus(
}
}
void QtCodeFileSingle::copySelection()
{
if (m_area)
{
m_area->copySelection();
}
}
const FilePath& QtCodeFileSingle::getCurrentFilePath() const
{
return m_currentFilePath;