Skip to content

Commit 246a902

Browse files
committed
Merge pull request #106861 from VojtaStruhar/106776-column-alignment
Align autoload popup columns to the left
2 parents 419293d + f985abb commit 246a902

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

editor/settings/editor_autoload_settings.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -957,10 +957,12 @@ EditorAutoloadSettings::EditorAutoloadSettings() {
957957
tree->set_column_titles_visible(true);
958958

959959
tree->set_column_title(0, TTRC("Name"));
960+
tree->set_column_title_alignment(0, HORIZONTAL_ALIGNMENT_LEFT);
960961
tree->set_column_expand(0, true);
961962
tree->set_column_expand_ratio(0, 1);
962963

963964
tree->set_column_title(1, TTRC("Path"));
965+
tree->set_column_title_alignment(1, HORIZONTAL_ALIGNMENT_LEFT);
964966
tree->set_column_expand(1, true);
965967
tree->set_column_clip_content(1, true);
966968
tree->set_column_expand_ratio(1, 2);

0 commit comments

Comments
 (0)