diff --git a/Libraries/LibVT/TerminalWidget.cpp b/Libraries/LibVT/TerminalWidget.cpp index 438ceb4ca9..6296e1d738 100644 --- a/Libraries/LibVT/TerminalWidget.cpp +++ b/Libraries/LibVT/TerminalWidget.cpp @@ -513,7 +513,7 @@ void TerminalWidget::mousedown_event(GMouseEvent& event) m_selection_end = {}; } update(); - } else if (event.button() == GMouseButton::Right) { + } else if (event.button() == GMouseButton::Middle) { if (m_ptm_fd == -1) return; auto text = GClipboard::the().data();