Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The font of my modelsim is too small to see

Modelsim screenshot

As you can see, the font of modelsim's text editor is very small. But I can't change the size in Tools->Edit Preferences->Source Window->Fonts. However, I can make the letters bigger by set the DPI higher(through System Settings->Fonts) or set the resolution of the screen to a appropriate value, such as 1024X720, while 1366x768 is the actual resolution of my screen. These ways are not comfortable, because everything else look strange.My OS is Fedora 22, and the version of my Modelsim is 10.3d.

I want to get a more comfortable way to the font-size problem of Modelsim, I'll appreciate it!

like image 593
Wtswkz Avatar asked Jul 22 '15 06:07

Wtswkz


People also ask

Why is my font too small?

To change your display in Windows, select Start > Settings > Accessibility > Text size. To make only the text on your screen larger, adjust the slider next to Text size. To make everything larger, including images and apps, select Display , and then choose an option from the drop-down menu next to Scale.

How do you zoom in on modelsim?

I ran into this too in Xubuntu, just use Ctrl + + or Ctrl + - to enlarge or shrink the text dynamically.

How do I increase the font size in Verilog?

You can can also modify the font settings from Window > Preference > General > Appearance > Colors and Fonts. For global settings (used by all editors), select Basic > Text Font and for editor specific settings, select (e , Verilog, VHDL) Language > Editor > Text Font.


1 Answers

I ran into this too in Ubuntu 16.04 LTS with modelsim 10.5 ASE. I fixed it as follows:

  1. Open ~/.modelsim (use "nano ~/.modelsim" in terminal)
  2. Find: PrefDefault = ... textFontV2 {Verdana 12} (the name of the font may differ)
  3. Change 12 to -12, so it will looks like this: textFontV2 {Verdana -12}
  4. Save ~/.modelsim (Ctrl+O and then Enter)
  5. Reopen modelsim
like image 157
Alexey Khaylov Avatar answered Sep 19 '22 01:09

Alexey Khaylov