Alexey-T / CudaText

Cross-platform text editor, written in Free Pascal
Mozilla Public License 2.0
2.39k stars 166 forks source link

Find/Replace dialog font-size #5566

Closed LeeMSilver closed 1 week ago

LeeMSilver commented 1 week ago
  1. How do I enlarge the font-size on the Find/Replace menu? None of the Options/Customize/Fonts look like it applies.

  2. The Find/Replace used to appear at the bottom of and as a part of the main window. As of last Sunday (6/16) it got detached for no apparent reason and is now a separate window. Its default position was above the main window, but I moved it under the main window and it remembers its position between sessions.

Number (1) is of more importance to me.

Thanks in advance for your assistance.

Alexey-T commented 1 week ago
  1. Must be the option "find_separate_form" toggled?
Alexey-T commented 1 week ago

1.

on the Find/Replace menu?

Do you mean font size of the Find dlg buttons? or menu appeared from '...' button? Must be the option "ui_scale" and/or "ui_scale_font" (with OS suffix).

LeeMSilver commented 1 week ago

Replying to both of your replies:

Thanks for the responses.

  1. I could not find find_separate_form in any of the ini-files.

  2. I meant the text for the find/replace strings - sorry I wasn't clear. Again, I could not find the text ui_scale in any of the ini-files.

Alexey-T commented 1 week ago

Program don't have ini-files (in default intallation I mean), it has JSON files, ie default.json. default.json HAS the option "find_separate_form", and also "ui_scale".

MUST READ! https://wiki.freepascal.org/CudaText#Configuration

Does it help?

I meant the text for the find/replace strings - sorry I wasn't clear.

So you need the scaling of UI? then option "ui_scale" (with OS suffix, see the top of default.json) is for you, right?

Ie, write in settings/user.json:

{
  "find_separate_form": true,
  "ui_scale__linux": 150,
}

(__linux is OS suffix)

LeeMSilver commented 1 week ago

My questions had to do with SynWrite, which I didn't know had been upgraded/replaced by CudaText.

I downloaded/installed CudeText and am currently configuring it.