mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Fix column width on AutoLoad table on hidpi displays
This commit is contained in:
parent
47addcf9d0
commit
f494d5ac5c
@ -643,10 +643,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, 120);
|
||||
tree->set_column_min_width(3, 120 * EDSCALE);
|
||||
|
||||
tree->connect("cell_selected", this, "_autoload_selected");
|
||||
tree->connect("item_edited", this, "_autoload_edited");
|
||||
|
Loading…
Reference in New Issue
Block a user