Kaydet (Commit) 4a6f6d76 authored tarafından Muthu Subramanian's avatar Muthu Subramanian Kaydeden (comit) Noel Power

n#793999: PPTX Export - background image fit to slide.

Change-Id: I0365c1a2723e5da06c269802c0503d4e45fe7ac1
Signed-off-by: 's avatarNoel Power <noel.power@suse.com>
üst cda698a2
......@@ -565,6 +565,11 @@ void DrawingML::WriteBlipMode( Reference< XPropertySet > rXPropSet )
case BitmapMode_REPEAT:
mpFS->singleElementNS( XML_a, XML_tile, FSEND );
break;
case BitmapMode_STRETCH:
mpFS->startElementNS( XML_a, XML_stretch, FSEND );
mpFS->singleElementNS( XML_a, XML_fillRect, FSEND );
mpFS->endElementNS( XML_a, XML_stretch );
break;
default:
;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment