You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Resize some editor panel minimum sizes on hiDPI displays
This also increases the plugin description TextEdit's height, so that 3 lines can be viewed instead of just 2 (leaving a few pixels for the scroll bar).
This commit is contained in:
@@ -355,7 +355,7 @@ void ScriptEditorDebugger::_video_mem_request() {
|
||||
Size2 ScriptEditorDebugger::get_minimum_size() const {
|
||||
|
||||
Size2 ms = Control::get_minimum_size();
|
||||
ms.y = MAX(ms.y, 250);
|
||||
ms.y = MAX(ms.y, 250 * EDSCALE);
|
||||
return ms;
|
||||
}
|
||||
void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_data) {
|
||||
|
||||
Reference in New Issue
Block a user