Is there a way to increase the font of the menu bar and tooltips in Matlab

I have a high resolution laptop. I installed ubuntu (linux distro) on it and then expanded the system fonts. everything seemed perfect. but I recently installed matlab on ubuntu, and I found that Matlab does not fit into system fonts, the font in Matlab has its original size and is too small for me. I changed the font size in the code area by changing File - Preferences , but the fonts in the menu bar and tooltips are still too small for me. I searched the Internet for a long time, I did not find anything to change fonts in such areas. can anyone give me a hand? any help was appreciated!

+7
source share
1 answer

These commands allow you to change the font settings:

UIControl_FontSize_bak = get(0, 'DefaultUIControlFontSize'); set(0, 'DefaultUIControlFontSize', 18); insdati = menu('Can you please help me?','Yes','No') set(0, 'DefaultUIControlFontSize', UIControl_FontSize_bak); 

This creates a list of available settings:

 get(0, 'Default'); 
0
source

All Articles