Summary: | Cannot paste in the search field of quick open view | ||
---|---|---|---|
Product: | [Applications] kate | Reporter: | Benjamin Randazzo <benjamin> |
Component: | application | Assignee: | KWrite Developers <kwrite-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | christoph, waqar.17a |
Priority: | NOR | ||
Version: | 22.12.2 | ||
Target Milestone: | --- | ||
Platform: | macOS (DMG) | ||
OS: | macOS | ||
Latest Commit: | https://invent.kde.org/frameworks/kconfigwidgets/-/commit/19c9a61a3e761aea8df07dcd5378680bc0de4062 | Version Fixed In: | |
Sentry Crash Report: |
Description
Benjamin Randazzo
2023-04-12 19:53:32 UTC
can't reproduce on linux. Can you share a video recording? (In reply to Waqar Ahmed from comment #1) > can't reproduce on linux. > > Can you share a video recording? I believe this is specific to macOS. Here is a video showing the issue: https://b.randazzo.fr/uploads/bug468433.mov After you manually select paste from the menu, does Cmd+V work after that? (In reply to Waqar Ahmed from comment #3) > After you manually select paste from the menu, does Cmd+V work after that? The text is still pasted in the editor view with Cmd+V. I had an similar issue, on macOS this doesn't work : QFrame(parent, Qt::Tool | Qt::FramelessWindowHint) this does : QFrame(parent, Qt::Popup | Qt::FramelessWindowHint) ;0 sorry, it is the other way around, Tool works on macOS Should be fixed after https://invent.kde.org/utilities/kate/-/merge_requests/1355 Git commit 19c9a61a3e761aea8df07dcd5378680bc0de4062 by Waqar Ahmed. Committed on 01/12/2023 at 13:42. Pushed by cullmann into branch 'master'. Make commandbar a normal widget instead of a window Commandbar never really needed to be a window on its own because it was always inside the parent widget. So far it has worked okay but it has some issues on other platforms like not being able to paste text in the QLineEdit on macOS. This change makes the command bar a normal widget that is completely handled by Qt. This has many advantages: -> Same behaviour on all platforms -> Application shortcuts now work from inside the command bar, this allows us to jump between various commandbar like widgets in Kate directly. -> faster to open M +28 -16 src/kcommandbar.cpp M +5 -5 src/kcommandbar.h M +1 -0 src/kcommandbarmodel_p.cpp M +6 -6 tests/kcommandbartest.cpp https://invent.kde.org/frameworks/kconfigwidgets/-/commit/19c9a61a3e761aea8df07dcd5378680bc0de4062 Thank you very much! |