Add stepSizeX and stepSizeY properties

- Added properties stepSizeX stepSizeY to DFWINDOW
This commit is contained in:
Doc
2026-01-13 23:02:18 -05:00
parent 98b2e3352b
commit f2c1d04ed4

View File

@@ -164,6 +164,14 @@ class DFWINDOW:
def maxGridY(self) -> int: def maxGridY(self) -> int:
return self._gridy_max return self._gridy_max
@property
def stepSizeX(self) -> int:
return int(self._step_size_x)
@property
def stepSizeY(self) -> int:
return int(self._step_size_y)
@property @property
def contentWidth(self) -> int: def contentWidth(self) -> int:
return int(self._content_right - self._content_left) return int(self._content_right - self._content_left)