Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Fix issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasters committed Nov 12, 2018
1 parent 856f865 commit 926c466
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@


<groupId>kettle-environment</groupId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
</project>
2 changes: 1 addition & 1 deletion src/main/java/org/kettle/env/EnvironmentDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public boolean open() {
FormLayout formLayout = new FormLayout();

shell.setLayout( formLayout );
shell.setText( "Graph Model Editor" );
shell.setText( "Environment dialog" );

Button wOK = new Button( shell, SWT.PUSH );
wOK.setText( BaseMessages.getString( PKG, "System.Button.OK" ) );
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/kettle/env/EnvironmentsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public String open() {
FormLayout formLayout = new FormLayout();

shell.setLayout( formLayout );
shell.setText( "Graph Model Editor" );
shell.setText( "Environments" );

Button wOK = new Button( shell, SWT.PUSH );
wOK.setText( BaseMessages.getString( PKG, "System.Button.OK" ) );
Expand All @@ -83,7 +83,7 @@ public String open() {

Label wlEnvironments = new Label( shell, SWT.LEFT );
props.setLook( wlEnvironments );
wlEnvironments.setText( "Environments: " );
wlEnvironments.setText( "Select an Environment to use: " );
FormData fdlEnvironments = new FormData();
fdlEnvironments.left = new FormAttachment( 0, 0 );
fdlEnvironments.top = new FormAttachment( 0, 0 );
Expand Down

0 comments on commit 926c466

Please sign in to comment.