Completed
Last Updated: 14 May 2019 10:53 by ADMIN
Release R3 2018
ADMIN
Hristo
Created on: 10 Jul 2018 15:47
Category: RichTextEditor
Type: Bug Report
3
FIX. RadRichTextEditor - after performing a selection of an HTML imported document the font changes unexpectedly on Windows 10 (1806)
The issue only reproduces on Windows 10( 1806). Check the attached video showing the result: 

Workaround: Handle the CommandExecuting event this way
private void RadRichTextEditor1_CommandExecuting(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is ChangeFontFamilyCommand && e.CommandParameter.ToString() == "")
    {
        e.Cancel = true; 
    }
}
Attached Files:
0 comments