| Summary: | File Menu,,,, Alt+Ctrl+A does not work to set away. mouse selection doeswork for away and back/available | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | bill soknich <soknichw> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
bill soknich
2006-07-30 22:04:21 UTC
The Ctrl+Alt+Q shortcut was probably used in konversation 0.18, which is what the handbook was written for (and it needs to be updated, really). Ctrl+Alt+A is a default (for Kubuntu at least) kwin global shortcut for "Activate Window Demanding Attention" and therefor, takes precedence over the shortcut in konversation. SVN commit 577541 by hein:
Use a shortcut for the global away toggle that isn't
already in use by default.
BUG:131559
M +1 -1 konversationmainwindow.cpp
--- trunk/extragear/network/konversation/src/konversationmainwindow.cpp #577540:577541
@@ -231,7 +231,7 @@
action->setToolTip(i18n("Clear the contents of all open tabs"));
action->setEnabled(false);
- KAction* awayAction = new KAction(i18n("Set &Away Globally")/*, "konversationaway"*/, KShortcut("Ctrl+Alt+A"),
+ KAction* awayAction = new KAction(i18n("Set &Away Globally")/*, "konversationaway"*/, KShortcut("Ctrl+Shift+A"),
static_cast<KonversationApplication *>(kapp), SLOT(toggleAway()), actionCollection(),"toggle_away");
awayAction->setEnabled(false);
|