Version: 3.0.3 (using KDE KDE 3.2.2) Installed from: Debian testing/unstable Packages Compiler: gcc 3.3.3 OS: Linux How to reproduce: 1. Start the "new project" wizard. 2. Try to press enter at the last step Expected behavior: - That enter presses the "Finish" button
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)