Menu font size

Cmin7669 wrote on 7/14/2022, 9:11 PM

Just wondering if other people are getting this font size issue (see picture). I can increase the font size of the main (top) menu items through window font settings. But I cannot change the font size of inset menu items (which are very small). I wear glasses which are bi-focal so to see the items I have to crank my head back to view the small menu words. Why are they not linked to the application font size?

Comments

snibchi1 wrote on 7/15/2022, 5:33 AM

This is systemic and cannot be changed. This can be done with the key combination in Windows:

STRG+Windows-Logo+M

Audiovisuelle Geräte

  • Canon EOS 6D
  • Canon EOS 450D
  • Nicon Coolpix S7000
  • AC800 Actioncam
  • Sony HDR-SR5

Hardware-Ausstattung

  • Monitor: LG Ultrawide 34UC79G
  • Tastatur: MSI GK 50 Elite
  • Maus: Corsair M65 PRO RGB
  • Gehäuse: CooMas HAF X 942-KKN1 ATX
  • PSU: be quiet! Staight P11 850W
  • Board: MSI MEG X570 ACE (Bios 7C35 v 1.P0, 04.07.2024)
  • CPU: AMD Ryzen 9 3900x
  • Cooler: Noctua NH-D14 SE2011 (AMD Adapter)
  • RAM: 2x 16GB D432GB 3600-17 Predator K2 KHX
  • M_2.1: 1x 2TB Gigabyte GP-ASM2NE6200
  • M_2.2: 1x 1TB Gigabyte GP-ASM2NE6100
  • M_2.3: 1x 1TB Samsung SSD Pro 980
  • SSD: 1x 4TB SanDisk Ultra 3D
  • SSD: 1x 512GB Samsung 850 Pro
  • GPU: 1x 12GB MSI Radeon RX 6750 XT
  • NAS: Synology DS 218+ 2x 6TB

Software

  • Windows 11 64 Pro (24H2 Build 26100.3915)
  • MAGIX Vegas Suite 365 (Build 22.250)
  • MAGIX Photostory deluxe 2025 (V 24.0.1.204 (UDP3))
  • Sound Forge Pro 18
  • ACID Pro 11.0 (x64)
  • Music Maker 2025
  • ADOBE Master Suite CS6, CC
Cmin7669 wrote on 7/15/2022, 4:02 PM

WHAT??

Former user wrote on 7/15/2022, 4:10 PM

@Cmin7669 I think he means Ctrl l+ Windows key + M which opens Display settings,

Cmin7669 wrote on 7/15/2022, 5:49 PM

Yeah, that's not going to work for me. It looks like the programmers have not used fonts in that part of the menu, but instead have used a picturebox with the words, that when clicked takes you to that menu item. If this is the case it's a bit shoddy. This could be easily fixed programmatically.

Former user wrote on 7/15/2022, 6:16 PM

@Cmin7669 How big is your screen/monitor?

Cmin7669 wrote on 7/15/2022, 8:54 PM

The size of my monitor has NO bearing on the issue, it would make zero difference. My monitor is 4K and 700mm dia.

The real problem is the programming is not allowing for the font in the menu to follow the system font size.

In VB.Net the coding is as follows:

 Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        Label1.Font = New Font(Me.Font.Name, SystemInformation.MenuFont.Size, Me.Font.Style, Me.Font.Unit)
        Button1.Font = New Font(Me.Font.Name, SystemInformation.MenuFont.Size, Me.Font.Style, Me.Font.Unit)
        MenuStrip1.Font = New Font(Me.Font.Name, SystemInformation.MenuFont.Size, Me.Font.Style, Me.Font.Unit)
        TextBox1.Font = New Font(Me.Font.Name, SystemInformation.MenuFont.Size, Me.Font.Style, Me.Font.Unit)
    End Sub

As I said in the first post they have either not linked the font to the system size settings or they have just linked a picture with the menu items. A picture of the menu item will not change with the system font size.

 

rraud wrote on 7/16/2022, 9:34 AM

You could change the Win display DPI, but that make everything larger. I have my laptop set to 175% which made thins easier to read, but some plug-ins parameters are off-screen.

Magix products are designed for folks with perfect (or better) vision.

Former user wrote on 7/16/2022, 11:29 AM

@Cmin7669 Ok i was JUST ASKING,, 700mm dia, so you've got round monitor ? , i had a play with the size issue & as @rraud says Windows Settings - Display - Make everything bigger did enlarge this list, & it can't be a linked picture because you can click & open each item on the list.

Cmin7669 wrote on 7/16/2022, 1:00 PM

@Cmin7669 Ok i was JUST ASKING,, 700mm dia, so you've got round monitor ? , i had a play with the size issue & as @rraud says Windows Settings - Display - Make everything bigger did enlarge this list, & it can't be a linked picture because you can click & open each item on the list.

Sorry I should have been more specific and said "Diagonal", but a round screen would be interesting. With regard to the "clickable" pictures it would need to be one for each menu item of course. Entirely possible, it's just a click event on each picture. The most likely scenario is that they have just not linked the text to the system text size.

As I said before, a bit shoddy!, but easy to rectify in the programming stage .