Figure editing shortcut missing

11 vues (au cours des 30 derniers jours)
Jacqueline
Jacqueline le 16 Mai 2019
Commenté : Rik le 20 Oct 2020
I recently installed 2018b and the plot tools are very different. There used to be an icon on the very right of the toolbar that I could press to open figure palette, plot browser, and property editor. Now I have to click view > figure palette, then view > plot browser, then view > property editor. Is there an easy way to open all of these at the same time?
Screen Shot 2019-05-16 at 1.25.57 PM.png

Réponse acceptée

Rik
Rik le 16 Mai 2019
Modifié(e) : Rik le 17 Mai 2019
Edit:
You can open the plot tools with the plottools function. You can probably add this as a custom button, but otherwise the code below should work.
hFig=figure;
plottools(hFig)
%or put this in your startup.m (untested, might need modification)
%make sure add_plottools_button is on your Matlab path
try %#ok
if ~verLessThan('matlab','9.5')
set(groot,'defaultFigureCreateFcn',...
@(fig,~)add_plottools_button(fig));
end
end
function add_plottools_button(fig)
persistent icon
if isempty(icon)
% Read an image
img = imread(fullfile(matlabroot,...
'toolbox','matlab','icons','tool_plottools_show.png'));
icon = double(img)/double(uint16( inf));
end
t = findall(fig,'type','uitoolbar','tag','FigureToolBar');
if isempty(t)
%no toolbar exists, create one
t = uitoolbar('Parent',fig);
end
% Create a uipushtool in the toolbar
uipushtool(t,'TooltipString','Open plot tools',...
'ClickedCallback',...
@(obj,~)plottools(ancestor(obj,'figure')),...
'CData',icon)
end
Original answer:
You probably mean the controls that you can add back to your figure with addToolbarExplorationButtons.
Alternatively, you could add the code below to your startup.m to reverse the change by default.
try %#ok
if ~verLessThan('matlab','9.5')
set(groot,'defaultFigureCreateFcn',...
@(fig,~)addToolbarExplorationButtons(fig));
set(groot,'defaultAxesCreateFcn', ...
@(ax,~)set(ax.Toolbar,'Visible','off'));
end
end
  5 commentaires
Rik
Rik le 17 Mai 2019
See my adapted answer. And if you are wondering: in my copy of R2019a the tool_plottools_show.png file can be found in that folder, so that should keep working, at least for some time. Props to undocumented Matlab for suggesting findall to get the handle to the default uitoolbar object.
Jacqueline
Jacqueline le 19 Mai 2019
Excellent! Thank you!

Connectez-vous pour commenter.

Plus de réponses (1)

Jeffrey Gruneich
Jeffrey Gruneich le 20 Oct 2020
What a joke!
  1 commentaire
Rik
Rik le 20 Oct 2020
To one person this is cleaning up the UI, to another it is removing a useful tool. For the second category my answer should work to put it back.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Printing and Saving dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by