| Summary: | "Select Categories" has strange focus behaviour | ||
|---|---|---|---|
| Product: | [Unmaintained] kab3 | Reporter: | Mark Williamson <maw48> |
| Component: | general | Assignee: | Tobias Koenig <tokoe> |
| Status: | RESOLVED UNMAINTAINED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 3.4 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Mark Williamson
2005-09-12 04:36:03 UTC
Confirmed on r582187. Perhaps the 'select categories' dialog should be made modal? SVN commit 631975 by tokoe:
Change non-modal dialogs into modal ones to prevent the user
from closing the contact editor dialog before the category editor dialog.
BUG:112449
M +2 -4 addresseeeditorwidget.cpp
--- branches/KDE/3.5/kdepim/kaddressbook/addresseeeditorwidget.cpp #631974:631975
@@ -782,8 +782,7 @@
}
mCategorySelectDialog->setSelected( QStringList::split( ",", mCategoryEdit->text() ) );
- mCategorySelectDialog->show();
- mCategorySelectDialog->raise();
+ mCategorySelectDialog->exec();
}
void AddresseeEditorWidget::categoriesSelected( const QStringList &list )
@@ -799,8 +798,7 @@
mCategorySelectDialog, SLOT( updateCategoryConfig() ) );
}
- mCategoryEditDialog->show();
- mCategoryEditDialog->raise();
+ mCategoryEditDialog->exec();
}
void AddresseeEditorWidget::emitModified()
The development of the old KAddressBook will be discontinued for KDE 4.4. Since the new application has the same name, but a completly new code base we close all bug reports against the old version and ask the submitters to resend there reports against the new product. |