소스 검색

Merge pull request #33621 from Calinou/export-runnable-tooltip

Add a tooltip to explain what marking a preset as "runnable" does
Rémi Verschelde 5 년 전
부모
커밋
a9fe8a7c3a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      editor/project_export.cpp

+ 1 - 0
editor/project_export.cpp

@@ -1107,6 +1107,7 @@ ProjectExportDialog::ProjectExportDialog() {
 	name->connect("text_changed", this, "_name_changed");
 	runnable = memnew(CheckButton);
 	runnable->set_text(TTR("Runnable"));
+	runnable->set_tooltip(TTR("If checked, the preset will be available for use in one-click deploy.\nOnly one preset per platform may be marked as runnable."));
 	runnable->connect("pressed", this, "_runnable_pressed");
 	settings_vb->add_child(runnable);