Explorar el Código

Fixed MagicText (differented formats were not returned properly, because FormattedText was always compared to itself). Fix provided by Carko

master
MadBoy_cp hace 13 años
padre
commit
b3946661dd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      DocX/FormattedText.cs

+ 1
- 1
DocX/FormattedText.cs Ver fichero

@@ -19,7 +19,7 @@ namespace Novacode
public int CompareTo(object obj)
{
FormattedText other = (FormattedText)obj;
FormattedText tf = (FormattedText)obj;
FormattedText tf = this;
if (other.formatting == null || tf.formatting == null)
return -1;

Cargando…
Cancelar
Guardar