Skip to content

Commit 72ff7e9

Browse files
committed
Fix issue esi-neuroscience#6. Gammatron.m radius is set properly.
1 parent b381444 commit 72ff7e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arcade/StimServer/classes/Stimuli/Gammatron.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
end
7878

7979
function set.radius(obj, radius)
80-
obj.shaderWidth = radius;
81-
obj.shaderHeight = radius;
80+
obj.shaderWidth = 2 * radius;
81+
obj.shaderHeight = 2 * radius;
8282
end
8383

8484

0 commit comments

Comments
 (0)