Description in input fields

This commit is contained in:
sakul-45 2021-07-24 21:05:49 +02:00
parent 9d8ed26e19
commit ea0e8256d5
2 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,7 @@ d.Callback = @FieldDoneButtonPushed;
%create input field
p = uicontrol(fig,'Style','edit');
p.String = 'No. points baseline';
p.Units = 'Normalized';
p.Position = [.01 .01 .5 .05];
p.HorizontalAlignment = 'left';

View File

@ -60,6 +60,7 @@ d.Callback = @TimeDoneButtonPushed;
%create input field
inp = uicontrol(fig,'Style','edit');
inp.String = 'No. points baseline';
inp.Units = 'Normalized';
inp.Position = [.01 .01 .5 .05];
inp.HorizontalAlignment = 'left';