Skip to content

Commit 6778612

Browse files
author
Sam Fries
committed
Fixed canvasraised name to make @doutriaux1 happy
1 parent 82cb595 commit 6778612

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Packages/vcs/vcs/Canvas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5272,11 +5272,11 @@ def saveinitialfile(self):
52725272
self.clean_auto_generated_objects()
52735273
return vcs.saveinitialfile()
52745274

5275-
def canvasraised(self, *args):
5275+
def raisecanvas(self, *args):
52765276
"""
52775277
Raise the VCS Canvas to the top of all open windows.
52785278
"""
5279-
return self.backend.canvasraised(*args)
5279+
return self.backend.raisecanvas(*args)
52805280

52815281
def islandscape(self):
52825282
"""

Packages/vcs/vcs/VTKPlots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1554,7 +1554,7 @@ def png_dimensions(self, path):
15541554
size = img.GetDimensions()
15551555
return size[0], size[1]
15561556

1557-
def canvasraised(self):
1557+
def raisecanvas(self):
15581558
if self.renWin is None:
15591559
warnings.warn("Cannot raise if you did not open the canvas yet.")
15601560
return

0 commit comments

Comments
 (0)