| Summary: | Floating messages mess up the navigation keys. | ||
|---|---|---|---|
| Product: | [Applications] krita | Reporter: | wolthera <griffinvalley> |
| Component: | Usability | Assignee: | Krita Bugs <krita-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | halla |
| Priority: | NOR | ||
| Version First Reported In: | git master (please specify the git hash!) | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | http://commits.kde.org/calligra/70de6717c8103226549bf42bcb5c9dbe04882da3 | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
|
Description
wolthera
2014-06-03 12:23:49 UTC
Could you try this:
diff --git a/krita/ui/widgets/kis_floating_message.cpp b/krita/ui/widgets/kis_floating_message.cpp
index 3a1046b..0bbabbd 100644
--- a/krita/ui/widgets/kis_floating_message.cpp
+++ b/krita/ui/widgets/kis_floating_message.cpp
@@ -131,7 +131,7 @@ KisFloatingMessage::KisFloatingMessage(const QString &message, QWidget *parent,
{
m_icon = koIcon("calligrakrita").pixmap(256, 256).toImage();
- setWindowFlags(Qt::FramelessWindowHint | Qt::Tool);
+ setWindowFlags(Qt::FramelessWindowHint | Qt::ToolTip);
setFocusPolicy(Qt::NoFocus);
setAttribute(Qt::WA_ShowWithoutActivating);
lines 1-13/13 (END)
And see what happens?
Git commit 9eb9cb9960aa530fcc975778856ce02fcce57b67 by Boudewijn Rempt. Committed on 03/06/2014 at 18:47. Pushed by rempt into branch 'master'. Using Tooltip instead of Tool seems to fix that. M +1 -1 krita/ui/widgets/kis_floating_message.cpp http://commits.kde.org/calligra/9eb9cb9960aa530fcc975778856ce02fcce57b67 Git commit 70de6717c8103226549bf42bcb5c9dbe04882da3 by Boudewijn Rempt. Committed on 03/06/2014 at 18:47. Pushed by rempt into branch 'calligra/2.8'. Using Tooltip instead of Tool seems to fix that. M +1 -1 krita/ui/widgets/kis_floating_message.cpp http://commits.kde.org/calligra/70de6717c8103226549bf42bcb5c9dbe04882da3 |