@@ -333,7 +333,9 @@ def plot_array(
333333 else :
334334 title = auto_labels .title
335335
336- self .title .set (auto_title = title , use_log10 = self .use_log10 )
336+ if self .title is not False :
337+ self .title .set (auto_title = title , use_log10 = self .use_log10 )
338+
337339 self .ylabel .set ()
338340 self .xlabel .set ()
339341
@@ -439,7 +441,8 @@ def plot_grid(
439441 if colorbar is not None and self .colorbar_tickparams is not None :
440442 self .colorbar_tickparams .set (cb = colorbar )
441443
442- self .title .set (auto_title = auto_labels .title )
444+ if self .title is not False :
445+ self .title .set (auto_title = auto_labels .title )
443446 self .ylabel .set ()
444447 self .xlabel .set ()
445448
@@ -583,7 +586,8 @@ def _plot_rectangular_mapper(
583586 shape_native = mapper .shape_native ,
584587 )
585588
586- self .title .set (auto_title = auto_labels .title )
589+ if self .title is not False :
590+ self .title .set (auto_title = auto_labels .title )
587591 self .tickparams .set ()
588592 self .ylabel .set ()
589593 self .xlabel .set ()
@@ -668,7 +672,8 @@ def _plot_delaunay_mapper(
668672 use_log10 = self .use_log10 ,
669673 )
670674
671- self .title .set (auto_title = auto_labels .title )
675+ if self .title is not False :
676+ self .title .set (auto_title = auto_labels .title )
672677 self .ylabel .set ()
673678 self .xlabel .set ()
674679
@@ -751,7 +756,8 @@ def _plot_voronoi_mapper(
751756 use_log10 = self .use_log10 ,
752757 )
753758
754- self .title .set (auto_title = auto_labels .title )
759+ if self .title is not False :
760+ self .title .set (auto_title = auto_labels .title )
755761 self .ylabel .set ()
756762 self .xlabel .set ()
757763
0 commit comments