You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-26 15:46:23 +00:00
Fix column width on AutoLoad table on hidpi displays
(cherry picked from commit f494d5ac5c)
This commit is contained in:
committed by
Hein-Pieter van Braam
parent
171542d96a
commit
dc97f91a18
@@ -592,10 +592,10 @@ EditorAutoloadSettings::EditorAutoloadSettings() {
|
||||
|
||||
tree->set_column_title(2, TTR("Singleton"));
|
||||
tree->set_column_expand(2, false);
|
||||
tree->set_column_min_width(2, 80);
|
||||
tree->set_column_min_width(2, 80 * EDSCALE);
|
||||
|
||||
tree->set_column_expand(3, false);
|
||||
tree->set_column_min_width(3, 80);
|
||||
tree->set_column_min_width(3, 80 * EDSCALE);
|
||||
|
||||
tree->connect("cell_selected", this, "_autoload_selected");
|
||||
tree->connect("item_edited", this, "_autoload_edited");
|
||||
|
||||
Reference in New Issue
Block a user