Skip to content

Commit

Permalink
Update Exit Session dialog for changed button labels in TWS 974
Browse files Browse the repository at this point in the history
  • Loading branch information
rlktradewright committed Nov 15, 2018
1 parent 43abba7 commit c6e0a9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<property environment="env"/>
<fail unless="env.IBC_BIN" message="Environment variable 'IBC_BIN' not set (set it to the fully-qualified directory name containing the TWS jar files)."/>

<property name="ver" value="3.7.0"/>
<property name="ver" value="3.7.1"/>
<property name="src" location="src"/>
<property name="resources" location="resources"/>
<property name="target" location="target"/>
Expand Down
Binary file modified resources/IBC.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion resources/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.0
3.7.1
2 changes: 2 additions & 0 deletions src/ibcalpha/ibc/ExitSessionFrameHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,14 @@ private boolean adjustExitSessionTime(Window window) {
}

if (SwingUtils.clickButton(window, "Update")) {
} else if (SwingUtils.clickButton(window, "Apply")) { // TWS 974
} else if (SwingUtils.clickButton(window, "Aktualisieren")) {
} else {
return false;
}

if (SwingUtils.clickButton(window, "Close")) {
} else if (SwingUtils.clickButton(window, "OK")) { // TWS 974
} else if (SwingUtils.clickButton(window, "Schliessen")) {
} else {
return false;
Expand Down

0 comments on commit c6e0a9a

Please sign in to comment.