Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi Seattle has very big font as default

Delphi Seattle has very big font as default , and I dont like it.

tried to change it as I did with XE8 with a 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 did not work , how is this handled in Delphi Seattle ?

enter image description here

like image 729
bsw Avatar asked Sep 04 '15 07:09

bsw


1 Answers

The documentation has not changed between the two versions.

Creating a Registry Script File

  1. 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: See the table of customizable values for details about the specified values.

  2. Save the document with the .reg extension.

  3. Execute the registry script file that you created. A warning about changing the registry may appear. You must accept it in order to apply the changes.

    Note: You may need Administrator permissions to be able to execute registry script files. If the IDE is open when you set or change registry values, you must restart the IDE for the values to take effect.

The default values for the font appearance are as shown above, and it seems you are just reassigning them.

like image 191
LU RD Avatar answered Nov 16 '22 01:11

LU RD