Skip to content

Commit f19ec1f

Browse files
committed
Fixes VS 2013 build break. The extra write is unnecessary with the old ReplWindow.
1 parent 2dd8ed8 commit f19ec1f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Python/Product/PythonTools/PythonTools/Repl/BasePythonReplEvaluator.cs

+2
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,9 @@ private void WriteImage(byte[] bytes) {
624624
}
625625

626626
private void WriteFrameworkElement(UIElement control, Size desiredSize) {
627+
#if DEV14_OR_LATER
627628
Window.Write("");
629+
#endif
628630
Window.FlushOutput();
629631

630632
var caretPos = Window.TextView.Caret.Position.BufferPosition;

0 commit comments

Comments
 (0)