Bugfix for moving next/previous buttons

This commit is contained in:
Eloízio Salgado 2017-03-02 10:12:03 -03:00
parent 33101f3881
commit e63b9b20f7
2 changed files with 14 additions and 1 deletions

13
LesionTracker/bin/orthanc.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
declare config='../config/orthancDICOMWeb.json'
if [ $# -gt 0 ]; then
if [ "$1" = '--dimse' ]; then
config="${config%/*}/orthancDIMSE.json"
[ -f "$config" ] && echo "DIMSE config file selected: $config"
fi
fi
echo 'Starting Meteor server...'
METEOR_PACKAGE_DIRS="../Packages" meteor --settings "$config"

View File

@ -557,7 +557,7 @@ export class LayoutManager {
const allowLooping = OHIF.uiSettings.displaySetNavigationLoopOverSeries;
// Create a map to control the display set sequence
const sequenceMap = new this.getDisplaySetSequenceMap();
const sequenceMap = this.getDisplaySetSequenceMap();
// Check if the display sets are sequenced
const isSequenced = this.isDisplaySetsSequenced(sequenceMap);