diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-05-24 16:22:45 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-24 16:22:45 +0200 | 
| commit | 2bf28f58ac11b82ea3ed9216b18dcf954b55eeee (patch) | |
| tree | b503e5b32ad8571d2f893f7229a48de0eb1c3b69 | |
| parent | f173d242a2d673e0b20521ff406f6728ef5b9ec6 (diff) | |
| parent | 182a04b1daf57375ddafbc9ce1f6384a85a5a9a6 (diff) | |
Merge pull request #28702 from Lisapple/fs-show-path-tooltip
Show file path in FileSystem dock tooltip
| -rw-r--r-- | editor/filesystem_dock.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index b7e9d36d88..52ed94e428 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -756,7 +756,7 @@ void FileSystemDock::_update_file_list(bool p_keep_selection) {  		Ref<Texture> type_icon;  		Ref<Texture> big_icon; -		String tooltip = fname; +		String tooltip = fpath;  		// Select the icons  		if (!finfo->import_broken) {  |