This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git commit e72d1bcf6982ae5c75b18961db113b45796cc729 Author: Kevin Morin <morin@codelutin.com> Date: Thu Sep 11 17:42:00 2014 +0200 fixes #3509 In configuration, the last option value is not saved if you do not select another cell before clicking on the save button --- .../java/jaxx/runtime/swing/config/ConfigCategoryUI.css | 2 +- .../java/jaxx/runtime/swing/config/ConfigCategoryUI.jaxx | 5 +++-- pom.xml | 14 +++++++++++++- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.css b/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.css index ff5a5a2..01fa45d 100644 --- a/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.css +++ b/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.css @@ -46,7 +46,7 @@ #table { rowSelectionAllowed:false; autoCreateRowSorter:true; - autoResizeMode:{JTable.AUTO_RESIZE_ALL_COLUMNS}; + autoResizeMode:{JXTable.AUTO_RESIZE_ALL_COLUMNS}; rowHeight:25; } diff --git a/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.jaxx b/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.jaxx index 04d9217..ffc61d9 100644 --- a/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.jaxx +++ b/jaxx-config/src/main/java/jaxx/runtime/swing/config/ConfigCategoryUI.jaxx @@ -28,6 +28,7 @@ jaxx.runtime.swing.config.model.CategoryModel jaxx.runtime.swing.config.model.ConfigTableModel jaxx.runtime.swing.config.model.ConfigUIModel + org.jdesktop.swingx.JXTable </import> <ConfigCategoryUIHandler id='handler' constructorParams='this'/> @@ -61,8 +62,8 @@ void $afterCompleteSetup() { <!-- table of options --> <JScrollPane id='tablePane' constraints='BorderLayout.CENTER'> - <JTable id="table" constructorParams='tableModel' - selectionModel='{selectionModel}'/> + <JXTable id="table" constructorParams='tableModel' + selectionModel='{selectionModel}'/> </JScrollPane> <JPanel layout='{new BorderLayout()}' constraints='BorderLayout.SOUTH'> diff --git a/pom.xml b/pom.xml index 76df1c7..6808cae 100644 --- a/pom.xml +++ b/pom.xml @@ -85,6 +85,18 @@ </roles> </developer> + <developer> + <name>Kevin Morin</name> + <id>kmorin</id> + <email>morin@codelutin.com</email> + <organizationUrl>http://www.codelutin.com</organizationUrl> + <organization>CodeLutin</organization> + <timezone>Europe/Paris</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + </developers> <contributors> @@ -237,7 +249,7 @@ <dependency> <groupId>org.nuiton</groupId> <artifactId>nuiton-config</artifactId> - <version>3.0-rc-1</version> + <version>3.0-SNAPSHOT</version> </dependency> <dependency> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.