Pavel
Pavel
> Regarding the documentation this interface is utilized to retrieve file owner information in case of file access issues: I had a typo, not sure if it was clear enough....
> Scintilla is not updating it's internal EOL flag when undoing the changes related to previously applied EOL switch (CR/LF/CR+LF). If this is a Scintilla's issue then can we report...
> I was able to reproduce the same behavior using SciTE 4.2.0 (Jul 5 2019). And the same thing happens in Notepad++. Which just like Notepad2 has only 1 setting...
Looks like this works only if X-Mouse is disabled. Any way to make it work regardless?
@cshnik Check #392 please.
> Dynamic graphics scaling for UI controls (when using pixel images for buttons/toolbars) is not a good practice since it does not allow to provide clear and stable UI when...
@Anton-V-K We have discussed this and decided that scaling should only occur if the window's DPI is >=20% larger than the last (largest) resource in the EXE. In other cases...
> Well, the approach with pre-created bitmap looks a bit inefficient - the scale factor is hardly changeable on a daily basis, but the app will allocate bitmaps for all...
> The rest of code will scan through this array to select proper toolbar id Use std::map with `range()` keys.
I mean something like this: ``` std::map images = { {range(0, 100), IDB_...}, }; return images.at(dpi); ``` > Anyway a map with ranges seems to be an overkill for this...