Skip to content

Commit f01550f

Browse files
author
AJubrey
committed
[ADDED] tooltips for the browse buttons
1 parent 4ae9085 commit f01550f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public override void OnInspectorGUI() {
5757
GUILayout.MinWidth(SelectableLabelMinWidth),
5858
GUILayout.Height(EditorGUIUtility.singleLineHeight));
5959

60-
if (GUILayout.Button ("...", EditorStyles.miniButton, GUILayout.Width (BrowseButtonWidth))) {
60+
if (GUILayout.Button (new GUIContent("...", "Browse to a new location for saving model prefabs"), EditorStyles.miniButton, GUILayout.Width (BrowseButtonWidth))) {
6161
string initialPath = ExportSettings.GetAbsoluteSavePath();
6262

6363
// if the directory doesn't exist, set it to the default save path
@@ -98,7 +98,7 @@ public override void OnInspectorGUI() {
9898
var options = ExportSettings.GetDCCOptions();
9999

100100
exportSettings.selectedDCCApp = EditorGUILayout.Popup(exportSettings.selectedDCCApp, options);
101-
if (GUILayout.Button("...", EditorStyles.miniButton, GUILayout.Width(BrowseButtonWidth))) {
101+
if (GUILayout.Button(new GUIContent("...", "Browse for 3D application in a non-default location"), EditorStyles.miniButton, GUILayout.Width(BrowseButtonWidth))) {
102102
var ext = "";
103103
switch (Application.platform) {
104104
case RuntimePlatform.WindowsEditor:

0 commit comments

Comments
 (0)