mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-02-01 11:34:59 +01:00
11 lines
320 B
Python
11 lines
320 B
Python
#!/usr/bin/env python
|
|
# License: GPLv3 Copyright: 2025, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
from .types import WindowGeometry
|
|
from .typing import WindowType
|
|
|
|
|
|
def calculate_geometry_for_float(child: WindowType, parent_geometry: WindowGeometry) -> WindowGeometry:
|
|
# TODO: Implement this
|
|
return parent_geometry
|