Skip to content
Snippets Groups Projects
Commit beb1cdf1 authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Small syntax fix

parent 809870e9
No related branches found
No related tags found
No related merge requests found
......@@ -11,10 +11,10 @@ classdef GtGuiThresholdGrain < GtVolView
methods
function obj = GtGuiThresholdGrain(vol, varargin)
viewer_args = varargin;
if ~ismember('f_title', varargin(1:2:end))
if (~ismember('f_title', varargin(1:2:end)))
viewer_args(end+1:end+2) = {'f_title', 'Volume Segmentation'};
end
if ~ismember('overlay', varargin(1:2:end))
if (~ismember('overlay', varargin(1:2:end)))
viewer_args(end+1:end+2) = {'overlay', vol};
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment