Cleanup: trailing space
This commit is contained in:
@@ -1179,8 +1179,8 @@ if(WIN32)
|
|||||||
|
|
||||||
option(WITH_WINDOWS_BUNDLE_CRT "Bundle the C runtime for install free distribution." ON)
|
option(WITH_WINDOWS_BUNDLE_CRT "Bundle the C runtime for install free distribution." ON)
|
||||||
mark_as_advanced(WITH_WINDOWS_BUNDLE_CRT)
|
mark_as_advanced(WITH_WINDOWS_BUNDLE_CRT)
|
||||||
if(WITH_WINDOWS_BUNDLE_CRT AND
|
if(WITH_WINDOWS_BUNDLE_CRT AND
|
||||||
CMAKE_VERSION VERSION_LESS "4.2.0" AND
|
CMAKE_VERSION VERSION_LESS "4.2.0" AND
|
||||||
MSVC_VERSION GREATER_EQUAL 1950)
|
MSVC_VERSION GREATER_EQUAL 1950)
|
||||||
message(WARNING "VS2026 not supported on this CMAKE version: WITH_WINDOWS_BUNDLE_CRT will be disabled")
|
message(WARNING "VS2026 not supported on this CMAKE version: WITH_WINDOWS_BUNDLE_CRT will be disabled")
|
||||||
set(WITH_WINDOWS_BUNDLE_CRT OFF)
|
set(WITH_WINDOWS_BUNDLE_CRT OFF)
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
This folder contains images which are intentionally broken and can not be
|
This folder contains images which are intentionally broken and can not be
|
||||||
loaded normally. Used to test that image IO code handles them correctly
|
loaded normally. Used to test that image IO code handles them correctly
|
||||||
giving an error message instead of crashing.
|
giving an error message instead of crashing.
|
||||||
|
|||||||
@@ -62,4 +62,4 @@ For any case:
|
|||||||
|
|
||||||
Weights of zero should always remain zero.
|
Weights of zero should always remain zero.
|
||||||
|
|
||||||
Having only one bone selected should behave like a regular paint.
|
Having only one bone selected should behave like a regular paint.
|
||||||
|
|||||||
@@ -46,23 +46,23 @@
|
|||||||
|
|
||||||
var chartData = chartsQueue[index];
|
var chartData = chartsQueue[index];
|
||||||
var chart;
|
var chart;
|
||||||
|
|
||||||
if (chartData.chart_type == 'line') {
|
if (chartData.chart_type == 'line') {
|
||||||
chart = new google.charts.Line(document.getElementById(chartData.id));
|
chart = new google.charts.Line(document.getElementById(chartData.id));
|
||||||
} else {
|
} else {
|
||||||
chart = new google.charts.Bar(document.getElementById(chartData.id));
|
chart = new google.charts.Bar(document.getElementById(chartData.id));
|
||||||
}
|
}
|
||||||
|
|
||||||
google.visualization.events.addOneTimeListener(chart, 'ready', function() {
|
google.visualization.events.addOneTimeListener(chart, 'ready', function() {
|
||||||
/* Auto scale chart elements to display full SVG. */
|
/* Auto scale chart elements to display full SVG. */
|
||||||
var allSvg = document.getElementsByTagName("svg");
|
var allSvg = document.getElementsByTagName("svg");
|
||||||
for (var svgIndex = 0; svgIndex < allSvg.length; svgIndex++) {
|
for (var svgIndex = 0; svgIndex < allSvg.length; svgIndex++) {
|
||||||
allSvg[svgIndex].setAttribute('height', allSvg[svgIndex].getBBox().height);
|
allSvg[svgIndex].setAttribute('height', allSvg[svgIndex].getBBox().height);
|
||||||
}
|
}
|
||||||
|
|
||||||
drawChart(chartsQueue, index + 1);
|
drawChart(chartsQueue, index + 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
chart.draw(chartData.data, chartData.options);
|
chart.draw(chartData.data, chartData.options);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,10 +151,10 @@
|
|||||||
options: options,
|
options: options,
|
||||||
chart_type: benchmark['chart_type']
|
chart_type: benchmark['chart_type']
|
||||||
};
|
};
|
||||||
|
|
||||||
chartsQueue.push(chartData);
|
chartsQueue.push(chartData);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Start drawing charts sequentially. */
|
/* Start drawing charts sequentially. */
|
||||||
drawChart(chartsQueue, 0);
|
drawChart(chartsQueue, 0);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -349,7 +349,7 @@ if(TEST_SRC_DIR_EXISTS)
|
|||||||
)
|
)
|
||||||
|
|
||||||
# This test is intermittently failing. Disable it for now to avoid other work
|
# This test is intermittently failing. Disable it for now to avoid other work
|
||||||
# being incorrectly flagged as broken. Once issue #146221 is resolved this
|
# being incorrectly flagged as broken. Once issue #146221 is resolved this
|
||||||
# test must be re-enabled.
|
# test must be re-enabled.
|
||||||
#
|
#
|
||||||
# add_blender_test(
|
# add_blender_test(
|
||||||
|
|||||||
Reference in New Issue
Block a user