Commit 66dadcc2 authored by Jay Dubb's avatar Jay Dubb
Browse files

v1.31.9

-- Fix bug found by Homer3 user with multiple monitors where left-to-right physical arrangement does not match left-to-right virtual OS setting, then subtract 1 from monitor number in GUI re-positioning algorithm.
parent 46e3bd84
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -205,6 +205,12 @@ classdef ChildGuiClass < handle
                end
            end
            
            % Fix bug: if multiple monitors left-to-right physical arrangement does 
            % not match left-to-right virtual setting then subtract 1 from monitor number. 
            if ps(1)<0
                ii = ii-1;
            end
            
            % Re-position parent and child guis
            set(hp, 'position', [ii-pp(3), pp(2), pp(3), pp(4)])
            set(obj.handles.figure, 'position', [ii-1, pc(2), pc(3), pc(4)])
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@ function vrnnum = getVernum()

vrnnum{1} = '1';   % Major version #
vrnnum{2} = '31';  % Major sub-version #
vrnnum{3} = '8';   % Minor version #
vrnnum{3} = '9';   % Minor version #
vrnnum{4} = '0';   % Minor sub-version # or patch #: 'p1', 'p2', etc