Delphi Seattle has a very large default font

Delphi Seattle has a very large default font, and I don't like it.

tried changing it like i did with XE8 with script

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Embarcadero\BDS\17.0\ModernTheme]

     "FontName"="Segoe UI"

     "FontSize"=dword:0000000a

     "MainToolBarColor"="clGradientActiveCaption"

But it didn’t work, how is it handled in Delphi Seattle?

enter image description here

+4
source share
1 answer

The documentation has not changed between the two versions.

Create Registry Script File

  • Create a new text document (you can use any text editor) and copy the following text into it:

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Embarcadero\BDS\17.0\ModernTheme]
    "FontName"="Segoe UI"
    "FontSize"=dword:0000000a
    "MainToolBarColor"="clGradientActiveCaption"
    

    Note. For more information about the specified values, see the table of custom values.

  • Save the document with the extension .reg.

  • Script. . , .

    . , Script. IDE , IDE, .

, , , .

+9

Source: https://habr.com/ru/post/1605896/


All Articles