Skip to content

Commit 856619c

Browse files
committed
wip
1 parent feeafb0 commit 856619c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

cadastral.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def draw_footer_boxes(self):
170170
x2 = x1 + box_width
171171
y1 = y_min
172172
y2 = y1 + box_height
173-
self._drawer.draw_footer_box(html_to_mtext(footer), x1, y1, x2, y2, self.footer_scale)
173+
self._drawer.draw_footer_box(html_to_mtext(footer), x1, y1, x2, y2, self.footer_size)
174174

175175
def draw_north_arrow(self):
176176
if len(self.parcels) == 0:

models/plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class PlanProps(BaseModel):
112112
topographic_setting: Optional[TopographicSettingProps] = None
113113
topographic_boundary: Optional[TopographicBoundaryProps] = None
114114
footers: List[str] = []
115-
footer_scale: float = 0.5
115+
footer_size: float = 0.5
116116

117117
def get_drawing_scale(self):
118118
if not self.scale:

topographic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def draw_footer_boxes(self):
251251
x2 = x1 + box_width
252252
y1 = y_min
253253
y2 = y1 + box_height
254-
self._drawer.draw_footer_box(html_to_mtext(footer), x1, y1, x2, y2, self.footer_scale)
254+
self._drawer.draw_footer_box(html_to_mtext(footer), x1, y1, x2, y2, self.footer_size)
255255

256256
def generate_tin_contours(self, smoothing: float = 1.0):
257257
"""

0 commit comments

Comments
 (0)