Merge pull request #17441 from poke1024/fix-autoload-column-width

Fix column width on AutoLoad table on hidpi displays
This commit is contained in:
Rémi Verschelde 2018-03-13 11:18:37 +01:00 committed by GitHub
commit 71cc0df311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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");