diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 19:32:51 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 19:32:51 +0100 |
commit | 4ca6a9809d54aafcb9887cec037ee1f3947fdf02 (patch) | |
tree | 52f3e5e5814217b1adbd7a2a369bf5d799482e86 /scene/gui/control.cpp | |
parent | 8b923163686d3141addaab3931d8875beb4f91d8 (diff) | |
parent | c0083e431bb7bf66987f396cf9a62fa372d92fe9 (diff) |
Merge pull request #44596 from KoBeWi/🧹🧹🧹
Cleanup unused engine code v2
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r-- | scene/gui/control.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 5930818763..0de6696344 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1582,10 +1582,6 @@ void Control::set_block_minimum_size_adjust(bool p_block) { data.block_minimum_size_adjust = p_block; } -bool Control::is_minimum_size_adjust_blocked() const { - return data.block_minimum_size_adjust; -} - Size2 Control::get_minimum_size() const { Vector2 ms; GDVIRTUAL_CALL(_get_minimum_size, ms); |