From a126d6ae2b4dfa19645ee1208177019da7d13671 Mon Sep 17 00:00:00 2001 From: Joep Vanlier Date: Thu, 19 Dec 2024 00:58:48 +0100 Subject: [PATCH] plugin: force plugin to always be on top --- plugin/editor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/editor.cpp b/plugin/editor.cpp index 30e4e44..08a4b56 100644 --- a/plugin/editor.cpp +++ b/plugin/editor.cpp @@ -798,6 +798,7 @@ void YsfxEditor::Impl::openCodeEditor() m_codeWindow->setVisible(true); m_codeWindow->toFront(true); + m_codeWindow->setAlwaysOnTop(true); m_ideView->focusOnCodeEditor(); }