diff options
author | Thomas White <taw@physics.org> | 2016-02-23 16:59:24 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2016-02-23 16:59:24 +0100 |
commit | e920fe4d6eb3928986d5a1ad62e492f2bb623728 (patch) | |
tree | d0af3a5d74ec873a0742f84d740ebf11cda28487 /src | |
parent | f5db71ccfe6024294494e6eb256ca744ff30c235 (diff) |
hdfsee: Fix panel/feature names in numbers window
Diffstat (limited to 'src')
-rw-r--r-- | src/dw-hdfsee.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dw-hdfsee.c b/src/dw-hdfsee.c index e08782c1..645575f7 100644 --- a/src/dw-hdfsee.c +++ b/src/dw-hdfsee.c @@ -3,12 +3,12 @@ * * Quick yet non-crappy HDF viewer * - * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2016 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * Copyright © 2012 Richard Kirian * * Authors: - * 2009-2015 Thomas White <taw@physics.org> + * 2009-2016 Thomas White <taw@physics.org> * 2014 Valerio Mariani * 2014 Takanori Nakane * 2012 Richard Kirian @@ -1927,8 +1927,8 @@ static void numbers_update(DisplayWindow *dw) } if ( (px==8) && (py==8) ) { - ffs = fs; - fss = ss; + ffs = fs + p->min_fs; + fss = ss + p->min_ss; found = 1; } |