branch develop updated (05cc639 -> 3b49b43)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git from 05cc639 fixes #3581: Fix absolute coordinate editor labels fixes #3582: Improve the dmd editor pattern new 3b49b43 refs #3580 improve enabled The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 3b49b431fb3e8a13d020f5614a531d54fff2e408 Author: Tony CHEMIT <chemit@codelutin.com> Date: Fri Nov 28 17:47:28 2014 +0100 refs #3580 improve enabled Summary of changes: .../org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.css | 6 ++++-- .../org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.jaxx | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
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 3b49b431fb3e8a13d020f5614a531d54fff2e408 Author: Tony CHEMIT <chemit@codelutin.com> Date: Fri Nov 28 17:47:28 2014 +0100 refs #3580 improve enabled --- .../org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.css | 6 ++++-- .../org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.jaxx | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.css b/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.css index 117dff2..76cc729 100644 --- a/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.css +++ b/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.css @@ -20,6 +20,10 @@ * #L% */ +.enabled { + enabled:{isEnabled()}; +} + #filterPanel { visible: {isFilterable()}; } @@ -35,7 +39,6 @@ #addButton { toolTipText:"beandoublelist.button.add"; actionIcon:"bean-doublelist-select"; - enabled:{model.isAddEnabled()}; } #selectedList { @@ -46,7 +49,6 @@ #removeButton { toolTipText:"beandoublelist.button.remove"; actionIcon:"bean-doublelist-unselect"; - enabled:{model.isRemoveEnabled()}; } #popup { diff --git a/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.jaxx b/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.jaxx index 41c5d20..048d46c 100644 --- a/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.jaxx +++ b/jaxx-widgets/src/main/java/org/nuiton/jaxx/widgets/editor/bean/FilterableDoubleList.jaxx @@ -101,7 +101,7 @@ <cell weightx='0.5' weighty='1' fill='both'> <JScrollPane onFocusGained='universeList.requestFocus()'> <!-- List of all the remaining available elements --> - <JList id='universeList' + <JList id='universeList' styleClass='enabled' onFocusGained='handler.selectFirstRowIfNoSelection(event)' onMouseClicked='handler.onUniverseListClicked(event)' onKeyPressed='handler.onKeyPressedOnUniverseList(event)'/> @@ -110,15 +110,15 @@ <cell anchor='north'> <JPanel layout='{new GridLayout(0,1)}'> - <JButton id='addButton' onActionPerformed='handler.select()'/> - <JButton id='removeButton' onActionPerformed='handler.unselect()'/> + <JButton id='addButton' styleClass='enabled' onActionPerformed='handler.select()'/> + <JButton id='removeButton' styleClass='enabled' onActionPerformed='handler.unselect()'/> </JPanel> </cell> <cell weightx='0.5' weighty='1' fill='both'> <JScrollPane onFocusGained='selectedList.requestFocus()'> <!-- List of the selected elements --> - <JList id='selectedList' + <JList id='selectedList' styleClass='enabled' onFocusGained='handler.selectFirstRowIfNoSelection(event)' onMouseClicked='handler.onSelectedListClicked(event)' onKeyPressed='handler.onKeyPressedOnSelectedList(event)'/> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm