| Summary: | Reminders should be on top, but not steal the focus | ||
|---|---|---|---|
| Product: | [Applications] korganizer | Reporter: | John Goodman <john_goodman53> |
| Component: | general | Assignee: | Cornelius Schumacher <schumacher> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Mandrake RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
John Goodman
2003-03-28 16:15:42 UTC
CVS commit by schrot:
- don't steal focus
BUG: 56545
M +2 -4 alarmdialog.cpp 1.26
--- kdepim/korganizer/korgac/alarmdialog.cpp #1.25:1.26
@@ -184,9 +184,7 @@ void AlarmDialog::show()
{
KDialogBase::show();
- raise();
- KWin::forceActiveWindow( winId() );
- actionButton( KDialogBase::Ok )->setFocus();
+ KWin::setState( winId(), NET::KeepAbove );
+ KWin::setOnAllDesktops( winId(), true );
eventNotification();
-// FIXME: go to foreground but don't steal focus
}
|