mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for [Bug 193311] Custom operation not run when "Finish" is pressed on the first page of the project creation wizard
This commit is contained in:
parent
6ecb92cf5b
commit
eac8b67c21
2 changed files with 4 additions and 3 deletions
|
@ -79,7 +79,7 @@ public class CDTConfigWizardPage extends WizardPage {
|
|||
setWizard(h.getWizard());
|
||||
}
|
||||
|
||||
private void addCustomPages() {
|
||||
void addCustomPages() {
|
||||
if (pagesLoaded) return;
|
||||
pagesLoaded = true;
|
||||
|
||||
|
|
|
@ -453,7 +453,8 @@ public class MBSWizardHandler extends CWizardHandler {
|
|||
doPostProcess(project);
|
||||
|
||||
// process custom pages
|
||||
if (fConfigPage != null && fConfigPage.pagesLoaded)
|
||||
// if (fConfigPage != null && fConfigPage.pagesLoaded)
|
||||
getConfigPage().addCustomPages();
|
||||
doCustom();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue