Merge branch 'rc' into devel
This commit is contained in:
commit
22c52ee376
|
@ -97,7 +97,7 @@ ul#klipper-settings {
|
|||
height: calc(100% - 35px);
|
||||
}
|
||||
|
||||
#settings_plugin_klipper form .tab-content .tap-pane#conf .control-group {
|
||||
div#settings_plugin_klipper.tab-pane.active form.form-horizontal div.tab-content div#conf.tab-pane.active div.control-group {
|
||||
margin-bottom: 0px;
|
||||
height: 100%;
|
||||
}
|
||||
|
|
|
@ -35,7 +35,6 @@ function KlipperGraphViewModel(parameters) {
|
|||
self.canvas;
|
||||
self.canvasContext;
|
||||
self.chart;
|
||||
self.chart.update;
|
||||
self.spinnerDialog;
|
||||
|
||||
self.onStartup = function() {
|
||||
|
@ -217,7 +216,9 @@ function KlipperGraphViewModel(parameters) {
|
|||
for (i=0; i < self.datasets().length; i++) {
|
||||
self.datasets()[i].fill = self.datasetFill();
|
||||
}
|
||||
self.chart.update();
|
||||
if (self.chart) {
|
||||
self.chart.update();
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue