| Summary: | using the account assistent the last dialog overlaps all other modal windows | ||
|---|---|---|---|
| Product: | [Applications] kmail2 | Reporter: | Sven Assmann <sven.assmann> |
| Component: | UI | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | montel |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 4.8.5 | |
| Sentry Crash Report: | |||
| Attachments: | no dialogs will ever get the correct focus | ||
|
Description
Sven Assmann
2012-06-11 16:16:56 UTC
Created attachment 71740 [details]
no dialogs will ever get the correct focus
this occures in the latest kde neon project that comes from kubuntu ppa I retested here. And it works fine.
We use:
void SetupManager::openWallet()
{
using namespace KWallet;
if ( Wallet::isOpen( Wallet::NetworkWallet() ) )
return;
Q_ASSERT( parent()->isWidgetType() );
Wallet *w = Wallet::openWallet( Wallet::NetworkWallet(), qobject_cast<QWidget*>( parent() )->effectiveWinId(), Wallet::Asynchronous );
QEventLoop loop;
connect( w, SIGNAL(walletOpened(bool)), &loop, SLOT(quit()) );
loop.exec();
}
so parent is accountwizard and it can be on top of this.
I can't reproduce it.
But ok for other dialogbox I can reproduce some bugs about it.
Fixed in 4.8.5/4.9 |