Skip to content

Commit

Permalink
Set min height on Orchestration build output panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Aug 11, 2024
1 parent 1618707 commit be4b989
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/editor/build_output_panel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ void OrchestratorBuildOutputPanel::_bind_methods()

OrchestratorBuildOutputPanel::OrchestratorBuildOutputPanel()
{
// Makes sure the output panel is same min height as Output panel
set_custom_minimum_size(Size2(0, 208 * EditorInterface::get_singleton()->get_editor_scale()));

_rtl = memnew(RichTextLabel);
_rtl->set_h_size_flags(SIZE_EXPAND_FILL);
_rtl->set_v_size_flags(SIZE_EXPAND_FILL);
Expand Down

0 comments on commit be4b989

Please sign in to comment.