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:
parent
115885b1bf
commit
f126b61748
3 changed files with 6 additions and 6 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue