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

Fixed title of a window

parent 4fee7c3b
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ classdef GtMultiVolView < GtVolView
function obj = GtMultiVolView(vols, varargin)
viewer_args = varargin;
if ~ismember('f_title', varargin(1:2:end))
viewer_args(end+1:end+2) = {'f_title', 'Volume Segmentation'};
viewer_args(end+1:end+2) = {'f_title', 'Multi-Volume Viewer'};
end
tempVol = GtMultiVolView.getMultiVol(vols, 1);
obj = obj@GtVolView(tempVol, viewer_args{:});
......
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