Skip to content
Snippets Groups Projects
Commit 0367fa0a authored by leprob001's avatar leprob001
Browse files

Bugfix, the uipanels did not have a parent property.

parent 8afbb8a9
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,7 @@ width = .14;
%% Selection frame
artoaGui.editTimeOfArrival.frameControlsSelect = uipanel( ...
'Parent', artoaGui.figures.editTimeOfArrival, ...
'Title', 'Select', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
......@@ -110,6 +111,7 @@ artoaGui.editTimeOfArrival.buttonDropSelection = uicontrol( ...
%% Sound source frame
artoaGui.editTimeOfArrival.frameControlsSoundSource = uipanel( ...
'Parent', artoaGui.figures.editTimeOfArrival, ...
'Title', 'Soundsource', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
......@@ -158,6 +160,7 @@ artoaGui.editTimeOfArrival.buttonWithdrawAllVisible = uicontrol( ...
%% Shift frame
artoaGui.editTimeOfArrival.frameControlsShift = uipanel( ...
'Parent', artoaGui.figures.editTimeOfArrival, ...
'Title', 'Shift', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
......@@ -197,6 +200,7 @@ artoaGui.editTimeOfArrival.buttonShiftResetAll = uicontrol( ...
%% Duplicate applied TOA table
artoaGui.editTimeOfArrival.frameDuplicateAppliedToa = uipanel( ...
'Parent', artoaGui.figures.editTimeOfArrival, ...
'Title', 'Duplicates', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
......@@ -226,6 +230,7 @@ artoa.controller.edit.timeOfArrival.createSoundsourceColorsPanel();
%% TOA Histogram
artoaGui.editTimeOfArrival.frameToaHistogram = uipanel( ...
'Parent', artoaGui.figures.editTimeOfArrival, ...
'Title', 'TOA histogram', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
......@@ -235,6 +240,7 @@ artoaGui.editTimeOfArrival.frameToaHistogram = uipanel( ...
%% Colormap slider
artoaGui.editTimeOfArrival.frameControlsColormapSlider = uipanel( ...
'Parent', artoaGui.figures.editTimeOfArrival, ...
'Title', 'Adjust colormap boundaries', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
......
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