fix indentation of copy to clipboard

This commit is contained in:
2021-10-31 13:56:18 +01:00
parent bb99fb2c58
commit 572d95a151

View File

@@ -255,9 +255,9 @@ class InnerBigText(QWidget):
# abort
return
selected_text = self.model.read_range(start, end)
cb = QApplication.clipboard()
cb.setText(selected_text)
selected_text = self.model.read_range(start, end)
cb = QApplication.clipboard()
cb.setText(selected_text)
def paintEvent(self, event: QPaintEvent) -> None:
# print("paintEvent")