This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/delivery by this push:
     new 2a9e274  [NETBEANS-4944] Create New Gradle Projects with Wrapper by 
Default
2a9e274 is described below

commit 2a9e2742459a1861c760612f7ad85aada6928c22
Author: Laszlo Kishalmi <[email protected]>
AuthorDate: Sat Oct 24 23:42:52 2020 -0700

    [NETBEANS-4944] Create New Gradle Projects with Wrapper by Default
---
 .../modules/gradle/newproject/ProjectAttributesPanelVisual.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/extide/gradle/src/org/netbeans/modules/gradle/newproject/ProjectAttributesPanelVisual.java
 
b/extide/gradle/src/org/netbeans/modules/gradle/newproject/ProjectAttributesPanelVisual.java
index caf8d26..4e0bc57 100644
--- 
a/extide/gradle/src/org/netbeans/modules/gradle/newproject/ProjectAttributesPanelVisual.java
+++ 
b/extide/gradle/src/org/netbeans/modules/gradle/newproject/ProjectAttributesPanelVisual.java
@@ -358,7 +358,7 @@ public final class ProjectAttributesPanelVisual extends 
JPanel implements Docume
         setText(tfPackageBase, settings, PROP_PACKAGE_BASE);
 
         Boolean initWrapper = (Boolean) 
settings.getProperty(PROP_INIT_WRAPPER);
-        cbInitWrapper.setSelected(initWrapper != null ? initWrapper: false);
+        cbInitWrapper.setSelected(initWrapper != null ? initWrapper : true);
 
         Boolean changedPkg = (Boolean) settings.getProperty(PROP_CHANGED_PKG);
         changedPackageBase = changedPkg == null ? false : changedPkg;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to