Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/uk.ac.stfc.isis.ibex.e4.client/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Eclipse-BundleShape: dir
Bundle-SymbolicName: uk.ac.stfc.isis.ibex.e4.client;singleton:=true
Bundle-Name: IBEX
Bundle-Version: 1.0.0.qualifier
Bundle-Version: 15.0.0
Require-Bundle: uk.ac.stfc.isis.ibex.e4.ui.perspectiveswitcher;bundle-version="1.0.0",
uk.ac.stfc.isis.ibex.ui.dashboard;bundle-version="1.0.0",
uk.ac.stfc.isis.ibex.ui.beamstatus;bundle-version="1.0.0",
Expand Down
1 change: 1 addition & 0 deletions base/uk.ac.stfc.isis.ibex.e4.client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
<relativePath>../uk.ac.stfc.isis.ibex.client.tycho.parent</relativePath>
<artifactId>uk.ac.stfc.isis.ibex.client.tycho.parent</artifactId>
</parent>
<version>15.0.0</version>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,12 @@ private void tryToChangeBackgroundWhenTextChanged() {
* The index for the cell.
*/
private void ifCellValueDifferentFromCachedValueThenChangeLabel(ViewerCell cell, int rowIndexCoefficient) {
String cachedValue = cachedValues.get(cell.getVisualIndex() + rowIndexCoefficient);
String cachedValue;
try {
cachedValue = cachedValues.get(cell.getVisualIndex() + rowIndexCoefficient);
} catch (IndexOutOfBoundsException e) {
cachedValue = "";
}

if (cachedValue.equals(cell.getText())) {
cell.setBackground(panelViewModel.getColour("white"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
import uk.ac.stfc.isis.ibex.epics.adapters.UpdatedObservableAdapter;
import uk.ac.stfc.isis.ibex.instrument.Instrument;
import uk.ac.stfc.isis.ibex.logger.IsisLog;
import uk.ac.stfc.isis.ibex.logger.LoggerUtils;
import uk.ac.stfc.isis.ibex.ui.UIUtils;
import uk.ac.stfc.isis.ibex.ui.dae.DaeUI;
import uk.ac.stfc.isis.ibex.ui.dae.DaeViewModel;
Expand Down Expand Up @@ -124,7 +125,7 @@ public void widgetSelected(SelectionEvent e) {
applyChangesToUI();
} catch (Exception err) {
// Top level error handler. Catch anything and log it, and bring up an error dialog informing the user of the error.
IsisLog.getLogger(this.getClass()).error(err);
LoggerUtils.logErrorWithStackTrace(IsisLog.getLogger(this.getClass()), err.getMessage(), err);
MessageDialog.openError(parent.getShell(), "Internal IBEX Error",
"Please report this error to the IBEX team.\n\nException was: " + err.getMessage());
}
Expand Down