input command makes figures irresponsive in Matlab R2016a

1 view (last 30 days)
Hi,
I have a major problem with matlab R2016a. As it turns out, while the prompt is executing an "input" command, the figures that have been created before became irresponsive.
If one launches the following piece of code:
function myTest();
localFigure();
input('Now the figure menu will be irresponsive until you press some key! > ', 's');
function localFigure();
h = figure('menubar','none');
hmenu = uimenu(h,'Label','this is a menu');
hsubmenu = uimenu(hmenu,'Label','this is a submenu');
... one sees that while the input prompt is open, clicking on the menu tab (object tagged 'hmenu' in the code) of the created figure does not trigger the submenu (tagged 'hsubmenu').
This is a real problem for my real code. This real code works like a console (effectively an 'input' command inside a 'while/end' loop) where the user types commands that are interpreted by the code to launch different GUIs with different parameters. If previously launched GUIs become disabled while the console (i.e. an input command) is executed, my code is basically useless. Previous releases of Matlab did not present this issue, and my code ran smoothly. Now I am rather puzzled.... any idea on how to overcome this issue?
thanks! Daniel

Accepted Answer

Soma Ardhanareeswaran
Soma Ardhanareeswaran on 20 Oct 2016
Edited: Soma Ardhanareeswaran on 20 Oct 2016
This is a bug in MATLAB R2016a. Please refer to https://www.mathworks.com/support/bugreports/1379371
  1 Comment
Arabarra
Arabarra on 24 Nov 2016
Thanks soma. They actually corrected it in R2016b, but not in deployed applications.

Sign in to comment.

More Answers (0)

Categories

Find more on Just for fun in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!