| Summary: | gui problem: unable to press enter at last step in new project wizard | ||
|---|---|---|---|
| Product: | [Developer tools] kdevplatform | Reporter: | Alexander Rødseth <rodseth> |
| Component: | appwizard | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.0.0 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Alexander Rødseth
2004-05-06 00:51:03 UTC
We have a new appwizard ... which suffers from the same problem. This is probably a 5 min thing to fix. Let's see how much longer we can keep this open, shall we? ;) SVN commit 614132 by dymo:
Sometimes it takes 2.5 years to write two lines of code :)
Make finish button default at the last page of app wizard.
BUG: 81009
M +3 -0 appwizarddlg.cpp
--- branches/kdevelop/3.4/parts/appwizard/appwizarddlg.cpp #614131:614132
@@ -1046,7 +1046,10 @@
{
kdDebug(9010) << "AppWizardDialog::pageChanged()" << endl;
projectLocationChanged();
+ if (currentPage() == m_lastPage)
+ finishButton()->setDefault(true);
+
//it is possible that project name was changed - we need to update all vcs integrator dialogs
for (QMap<int, VCSDialog*>::iterator it = m_integratorDialogs.begin();
it != m_integratorDialogs.end(); ++it)
|