Error in resizing GUIDE gui
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Douglas Anderson
el 19 de En. de 2020
Comentada: Douglas Anderson
el 20 de En. de 2020
Hello,
I am using GUIDE, and now am getting this error in modifying a GUIDE gui. The gui works, but not sure what's going on here!
![matlab error 1.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/262424/matlab%20error%201.png)
Thanks..
Doug Anderson
0 comentarios
Respuesta aceptada
Walter Roberson
el 19 de En. de 2020
Change line 2765 of guidefunc from
if ~strcmpi(get(children(i),'Units'), 'normalized')
to
if hasfield(children(i), 'Units') && ~strcmpi(get(children(i),'Units'), 'normalized')
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!