diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-12 13:39:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 13:39:34 +0100 |
commit | 26bb08f8b3b009f17645558309f4c5c02733e4c2 (patch) | |
tree | 96edeac5bfdc699192155df89271d7b055e95ec8 /editor/plugins/visual_shader_editor_plugin.cpp | |
parent | ccf6f33813765d1e75e34313baecd805d1ad716e (diff) | |
parent | 65e2230f6e75df07441eda3038066f901ff143d9 (diff) |
Merge pull request #35037 from timothyqiu/plugin-min-height
Fixes min size of various editor plugins on HiDPI
Diffstat (limited to 'editor/plugins/visual_shader_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/visual_shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp index 972e4f2172..e334d4b093 100644 --- a/editor/plugins/visual_shader_editor_plugin.cpp +++ b/editor/plugins/visual_shader_editor_plugin.cpp @@ -2852,7 +2852,7 @@ VisualShaderEditorPlugin::VisualShaderEditorPlugin(EditorNode *p_node) { editor = p_node; visual_shader_editor = memnew(VisualShaderEditor); - visual_shader_editor->set_custom_minimum_size(Size2(0, 300)); + visual_shader_editor->set_custom_minimum_size(Size2(0, 300) * EDSCALE); button = editor->add_bottom_panel_item(TTR("VisualShader"), visual_shader_editor); button->hide(); |